Reorganize tests and benchmark scripts.

Mainly to get rid of one top level directory. But this will
also be useful when there are tests of the embedding API.
This commit is contained in:
Bob Nystrom
2015-03-14 12:45:56 -07:00
parent e2a72282a1
commit 64eccdd9be
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 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