We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c80402 commit d6b3581Copy full SHA for d6b3581
scripts/build.sh
@@ -146,8 +146,8 @@ function run_lit_test() {
146
cargo build
147
cargo build --release
148
149
- lit -v -DCOMPILER=$project_location/target/debug/plc tests/lit/
150
- lit -v -DCOMPILER=$project_location/target/release/plc tests/lit/
+ lit -DCOMPILER=$project_location/target/debug/plc tests/lit/
+ lit -DCOMPILER=$project_location/target/release/plc tests/lit/
151
}
152
153
function run_test() {
tests/lit/single/arithmetic/addition.st
@@ -16,8 +16,8 @@ FUNCTION main
16
y : DINT;
17
END_VAR
18
19
- x := 60;
20
- y := 9;
+ x := 5;
+ y := 5;
21
printf('%d$N', x + y);
22
- // CHECK: 68
+ // CHECK: 10
23
END_FUNCTION
0 commit comments