Skip to content

Commit d6b3581

Browse files
committed
Update to working state
1 parent 7c80402 commit d6b3581

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ function run_lit_test() {
146146
cargo build
147147
cargo build --release
148148

149-
lit -v -DCOMPILER=$project_location/target/debug/plc tests/lit/
150-
lit -v -DCOMPILER=$project_location/target/release/plc tests/lit/
149+
lit -DCOMPILER=$project_location/target/debug/plc tests/lit/
150+
lit -DCOMPILER=$project_location/target/release/plc tests/lit/
151151
}
152152

153153
function run_test() {

tests/lit/single/arithmetic/addition.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ FUNCTION main
1616
y : DINT;
1717
END_VAR
1818

19-
x := 60;
20-
y := 9;
19+
x := 5;
20+
y := 5;
2121
printf('%d$N', x + y);
22-
// CHECK: 68
22+
// CHECK: 10
2323
END_FUNCTION

0 commit comments

Comments
 (0)