From 3794129c91f98c3c0e983baf47d770d54276c213 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 30 Jul 2019 17:47:55 +0300 Subject: [PATCH] make_tests.bat: run tests under Windows(gcc) --- make_tests.bat | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 make_tests.bat diff --git a/make_tests.bat b/make_tests.bat new file mode 100644 index 0000000000..f02206fd61 --- /dev/null +++ b/make_tests.bat @@ -0,0 +1,5 @@ +curl -O https://raw.githubusercontent.com/vlang/vc/master/v.c +gcc -std=gnu11 -DUNICODE -D_UNICODE -w -o vc.exe v.c +del v.c +vc.exe -o v.exe compiler +for /r . %%x in (*_test.v) do @v -o test.exe -debug %%x