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 6aa2c03 commit 31a4c62Copy full SHA for 31a4c62
1 file changed
tests/runtime/cases/lib/tst_framework.bas
@@ -7,12 +7,17 @@
7
END ASM
8
9
10
-#define REPORT_OK \
11
- PRINT PAPER 4; INK 0; " OK "; PAPER 8; TAB 31;: FINISH
+#define SHOW_OK \
+ PRINT PAPER 4; INK 0; " OK "; PAPER 8; TAB 31;
12
+
13
+#define SHOW_ERROR \
14
+ PRINT PAPER 2; INK 0; FLASH 1; " ERROR "; PAPER 8; FLASH 0; TAB 31;
15
16
+#define REPORT_OK \
17
+ SHOW_OK: FINISH
18
19
#define REPORT_FAIL \
- PRINT PAPER 2; INK 0; FLASH 1; " ERROR "; PAPER 8; FLASH 0; TAB 31;: FINISH
20
+ SHOW_ERROR: FINISH
21
22
23
#define INIT(msg) \
0 commit comments