refactor: move benchmark directory under test and update all references

The benchmark directory is relocated from the project root into the test directory, and all scripts, documentation links, and gitignore paths are updated accordingly. The test runner is also refactored to explicitly walk subdirectories (core, io, language, limit) instead of using a single test root, and a new test/README.md is added to document the test suite structure. Additionally, the constructor test for the Foo class is updated to add a zero-arity constructor and adjust expected output strings.
This commit is contained in:
Bob Nystrom
2015-03-14 19:45:56 +00:00
parent af58528e88
commit c4ef964f92
562 changed files with 32 additions and 8 deletions
+20
View File
@@ -0,0 +1,20 @@
// Note: These tests implicitly depend on ints being truthy.
// Also rely on IO.print() returning its argument.
// Return the first non-true argument.
IO.print(false && 1) // expect: false
IO.print(true && 1) // expect: 1
IO.print(1 && 2 && false) // expect: false
// Return the last argument if all are true.
IO.print(1 && true) // expect: true
IO.print(1 && 2 && 3) // expect: 3
// Short-circuit at the first false argument.
IO.print(true) && // expect: true
IO.print(false) && // expect: false
IO.print(false) // should not print
// Swallow a trailing newline.
IO.print(true &&
true) // expect: true
@@ -0,0 +1,8 @@
// False and null are false.
IO.print(false && "bad") // expect: false
IO.print(null && "bad") // expect: null
// Everything else is true.
IO.print(true && "ok") // expect: ok
IO.print(0 && "ok") // expect: ok
IO.print("" && "ok") // expect: ok
+20
View File
@@ -0,0 +1,20 @@
// Note: These tests implicitly depend on ints being truthy.
// Also rely on IO.print() returning its argument.
// Return the first true argument.
IO.print(1 || true) // expect: 1
IO.print(false || 1) // expect: 1
IO.print(false || false || true) // expect: true
// Return the last argument if all are false.
IO.print(false || false) // expect: false
IO.print(false || false || false) // expect: false
// Short-circuit at the first true argument.
IO.print(false) || // expect: false
IO.print(true) || // expect: true
IO.print(true) // should not print
// Swallow a trailing newline.
IO.print(true ||
true) // expect: true
@@ -0,0 +1,8 @@
// False and null are false.
IO.print(false || "ok") // expect: ok
IO.print(null || "ok") // expect: ok
// Everything else is true.
IO.print(true || "ok") // expect: true
IO.print(0 || "ok") // expect: 0
IO.print("s" || "ok") // expect: s