Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bin(run), tests: use the x86_64 backend #72

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cd "${solution_dir}" || exit 1

# Run the tests for the provided implementation file and redirect stdout and
# stderr to capture it
test_output=$(zig test -target x86_64-linux-musl "${test_file}" 2>&1)
test_output=$(zig test -target x86_64-linux-musl -fno-llvm -fno-lld "${test_file}" 2>&1)
exit_code=$?

cd "${start_dir}" || exit 1
Expand Down
2 changes: 1 addition & 1 deletion tests/example-all-fail/expected_results.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 1,
"status": "fail",
"message": "1/9 test.year not divisible by 4 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:7:5: 0x2247d6 in test.year not divisible by 4 in common year (test)\n try testing.expect(!leap.leap(2015));\n ^\n2/9 test.year divisible by 2, not divisible by 4 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:11:5: 0x224896 in test.year divisible by 2, not divisible by 4 in common year (test)\n try testing.expect(!leap.leap(1970));\n ^\n3/9 test.year divisible by 4, not divisible by 100 in leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:15:5: 0x2248e4 in test.year divisible by 4, not divisible by 100 in leap year (test)\n try testing.expect(leap.leap(1996));\n ^\n4/9 test.year divisible by 4 and 5 is still a leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:19:5: 0x224934 in test.year divisible by 4 and 5 is still a leap year (test)\n try testing.expect(leap.leap(1960));\n ^\n5/9 test.year divisible by 100, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:23:5: 0x224986 in test.year divisible by 100, not divisible by 400 in common year (test)\n try testing.expect(!leap.leap(2100));\n ^\n6/9 test.year divisible by 100 but not by 3 is still not a leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:27:5: 0x2249d6 in test.year divisible by 100 but not by 3 is still not a leap year (test)\n try testing.expect(!leap.leap(1900));\n ^\n7/9 test.year divisible by 400 is leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:31:5: 0x224a24 in test.year divisible by 400 is leap year (test)\n try testing.expect(leap.leap(2000));\n ^\n8/9 test.year divisible by 400 but not by 125 is still a leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:35:5: 0x224a74 in test.year divisible by 400 but not by 125 is still a leap year (test)\n try testing.expect(leap.leap(2400));\n ^\n9/9 test.year divisible by 200, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-all-fail/test_example_all_fail.zig:39:5: 0x224ac6 in test.year divisible by 200, not divisible by 400 in common year (test)\n try testing.expect(!leap.leap(1800));\n ^\n0 passed; 0 skipped; 9 failed."
"message": "1/9 test.year not divisible by 4 in common year... FAIL (TestUnexpectedResult)\n2/9 test.year divisible by 2, not divisible by 4 in common year... FAIL (TestUnexpectedResult)\n3/9 test.year divisible by 4, not divisible by 100 in leap year... FAIL (TestUnexpectedResult)\n4/9 test.year divisible by 4 and 5 is still a leap year... FAIL (TestUnexpectedResult)\n5/9 test.year divisible by 100, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n6/9 test.year divisible by 100 but not by 3 is still not a leap year... FAIL (TestUnexpectedResult)\n7/9 test.year divisible by 400 is leap year... FAIL (TestUnexpectedResult)\n8/9 test.year divisible by 400 but not by 125 is still a leap year... FAIL (TestUnexpectedResult)\n9/9 test.year divisible by 200, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n0 passed; 0 skipped; 9 failed."
}
2 changes: 1 addition & 1 deletion tests/example-partial-fail/expected_results.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 1,
"status": "fail",
"message": "1/9 test.year not divisible by 4 in common year... OK\n2/9 test.year divisible by 2, not divisible by 4 in common year... OK\n3/9 test.year divisible by 4, not divisible by 100 in leap year... OK\n4/9 test.year divisible by 4 and 5 is still a leap year... OK\n5/9 test.year divisible by 100, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-partial-fail/test_example_partial_fail.zig:23:5: 0x224986 in test.year divisible by 100, not divisible by 400 in common year (test)\n try testing.expect(!leap.leap(2100));\n ^\n6/9 test.year divisible by 100 but not by 3 is still not a leap year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-partial-fail/test_example_partial_fail.zig:27:5: 0x2249d6 in test.year divisible by 100 but not by 3 is still not a leap year (test)\n try testing.expect(!leap.leap(1900));\n ^\n7/9 test.year divisible by 400 is leap year... OK\n8/9 test.year divisible by 400 but not by 125 is still a leap year... OK\n9/9 test.year divisible by 200, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n/opt/zig/lib/std/testing.zig:515:14: 0x2246af in expect (test)\n if (!ok) return error.TestUnexpectedResult;\n ^\n/tmp/exercism-zig-test-runner/example-partial-fail/test_example_partial_fail.zig:39:5: 0x224ac6 in test.year divisible by 200, not divisible by 400 in common year (test)\n try testing.expect(!leap.leap(1800));\n ^\n6 passed; 0 skipped; 3 failed."
"message": "1/9 test.year not divisible by 4 in common year... OK\n2/9 test.year divisible by 2, not divisible by 4 in common year... OK\n3/9 test.year divisible by 4, not divisible by 100 in leap year... OK\n4/9 test.year divisible by 4 and 5 is still a leap year... OK\n5/9 test.year divisible by 100, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n6/9 test.year divisible by 100 but not by 3 is still not a leap year... FAIL (TestUnexpectedResult)\n7/9 test.year divisible by 400 is leap year... OK\n8/9 test.year divisible by 400 but not by 125 is still a leap year... OK\n9/9 test.year divisible by 200, not divisible by 400 in common year... FAIL (TestUnexpectedResult)\n6 passed; 0 skipped; 3 failed."
}