summaryrefslogtreecommitdiffhomepage
path: root/tests/cram
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-04-27 00:35:20 +0200
committerJo-Philipp Wich <jo@mein.io>2021-04-27 12:18:32 +0200
commit64eec7f90e945696572ee076b75d1f35e8f2248a (patch)
treef61121e8f89e39787a960e621fc8492e57fc4bc0 /tests/cram
parent4af803d76e4c08ff5661c2b37dbd333f3aba866d (diff)
treewide: ISO C / pedantic compliance
- Shuffle typedefs to avoid need for non-compliant forward declarations - Fix non-compliant empty struct initializers - Remove use of braced expressions - Remove use of anonymous unions - Avoid `void *` pointer arithmetic - Fix several warnings reported by gcc -pedantic mode and clang 11 compilation Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/cram')
-rw-r--r--tests/cram/test_basic.t5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/cram/test_basic.t b/tests/cram/test_basic.t
index 982d58a..3d4cd9e 100644
--- a/tests/cram/test_basic.t
+++ b/tests/cram/test_basic.t
@@ -35,7 +35,7 @@ check that ucode provides proper error messages:
One of -i or -s is required
[1]
- $ ucode -m foo -s ''
+ $ ucode -m foo -s ' '
Runtime error: No module named 'foo' could be found
At start of program
@@ -53,6 +53,7 @@ check that ucode can load fs module:
One of -i or -s is required
[1]
- $ ucode -m fs -s ''
+ $ ucode -m fs -s ' '
+ (no-eol)
$ touch moo; ucode -m fs -i moo