summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2023-06-14 19:04:19 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2023-06-14 19:04:19 +0100
commit13ad0442a3fde0518ca9133b55796f31652698c9 (patch)
tree5c1951f8a3f62dba2b6b255ebce3b1aa50d761e0
parent19fe683f14e1ba71e34b18d8f753bb5c93a75126 (diff)
Fix spuriously-included test case in compile.bat
This was clumsily added in 1c4318331663b152b0b298bd2c9e5c971506a86b as a test case for code I was writing at some point but has not been included in the repository yet. This means the 0.6 tag is broken for anyone trying to build from source unless this change is cherry-picked on top. Lesson learned: keep the working tree clean!
-rw-r--r--compile.bat2
1 files changed, 0 insertions, 2 deletions
diff --git a/compile.bat b/compile.bat
index 17dd919..67b35f4 100644
--- a/compile.bat
+++ b/compile.bat
@@ -116,8 +116,6 @@ del .build\sst.lib
%HOSTCC% -O2 -g -include test/test.h -o .build/bitbuf.test.exe test/bitbuf.test.c || exit /b
.build\bitbuf.test.exe || exit /b
-%HOSTCC% -O2 -g -include test/test.h -o .build/crc32.test.exe test/crc32.test.c || exit /b
-.build\crc32.test.exe || exit /b
:: special case: test must be 32-bit
%HOSTCC% -m32 -O2 -g -ladvapi32 -include test/test.h -o .build/hook.test.exe test/hook.test.c || exit /b
.build\hook.test.exe || exit /b