Skip to content

Commit 414f754

Browse files
Begin adding tests.
1 parent c80be8f commit 414f754

File tree

483 files changed

+2515
-1553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+2515
-1553
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
run: .\build.ps1
2020

2121
- name: Run tests
22-
run: .\prefix.exe .\tests\test2.pre
22+
run: .\tests\test.ps1

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ against that DLL's import library, and compiles each discovered extension
55
against the same shared runtime.
66
77
Requires: run from a Developer Command Prompt for Visual Studio where cl.exe is on PATH.
8-
Usage (from Prefix-C folder):
8+
Usage (from Prefix folder):
99
powershell -ExecutionPolicy Bypass -File .\build.ps1
1010
#>
1111

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BOOL: b = TRUE
2+
ABS(b)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
STR: s = 'not-a-number'
2+
ABS(s)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ADD(0d1, 0d1.0)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALL()
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AND(TRUE, TRUE, TRUE)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AND()
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ANY()
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ASSERT(FALSE)

0 commit comments

Comments
 (0)