authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 11:27:42-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 11:27:42-04:00
logc42f7309b695a46b1718c97e79e9015311245270
tree51cb808c5139e7164532fbb2095fd0ba0d953779
parent6ae631d1a74e6918a67f55217a2581c65672b4dc

travis: fix typo in linux script


1 files changed, 6 insertions(+), 6 deletions(-)

ci/travis_linux_script+6-6
......@@ -14,21 +14,21 @@ make VERBOSE=1
1414make install
1515./zig build --build-file ../build.zig test
1616
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
1818wine64 test.exe
1919
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
2121wine test.exe
2222
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
2424wine64 test.exe
2525
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
2727wine test.exe
2828
2929# 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
3131# wine64 test.exe
3232
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
3434wine test.exe