| ... | ... | @@ -14,21 +14,21 @@ make VERBOSE=1 |
| 14 | 14 | make install |
| 15 | 15 | ./zig build --build-file ../build.zig test |
| 16 | 16 | |
| 17 | | ./zig test ../std/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc |
| 17 | ./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc |
| 18 | 18 | wine64 test.exe |
| 19 | 19 | |
| 20 | | ./zig test ../std/behavior.zig --target-os windows --target-arch i386 --target-environ msvc |
| 20 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc |
| 21 | 21 | wine test.exe |
| 22 | 22 | |
| 23 | | ./zig test ../std/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-fast |
| 23 | ./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-fast |
| 24 | 24 | wine64 test.exe |
| 25 | 25 | |
| 26 | | ./zig test ../std/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast |
| 26 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-fast |
| 27 | 27 | wine test.exe |
| 28 | 28 | |
| 29 | 29 | # TODO fix bug |
| 30 | | # ./zig test ../std/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-safe |
| 30 | # ./zig test ../test/behavior.zig --target-os windows --target-arch x86_64 --target-environ msvc --release-safe |
| 31 | 31 | # wine64 test.exe |
| 32 | 32 | |
| 33 | | ./zig test ../std/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe |
| 33 | ./zig test ../test/behavior.zig --target-os windows --target-arch i386 --target-environ msvc --release-safe |
| 34 | 34 | wine test.exe |