Fix typo + cosmetics
authorBenjamin Auder <benjamin.auder@somewhere>
Sat, 16 Dec 2017 14:37:59 +0000 (15:37 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sat, 16 Dec 2017 14:37:59 +0000 (15:37 +0100)
test/helpers.h
test/lut.h
test/makeMain.sh

index 49dec3b..3e8c32b 100644 (file)
@@ -3,13 +3,13 @@
 
 // types (POD) to be used as items inside our data structures
 typedef struct {
-    int a;
-    double b;
+       int a;
+       double b;
 } StructTest1;
 
 typedef struct {
-    float a;
-    StructTest1* b;
+       float a;
+       StructTest1* b;
 } StructTest2;
 
 #endif
index 75d21fb..821feb3 100644 (file)
@@ -8,7 +8,7 @@
 #define lu_assert(expr) \
        lu_assert_msg(expr, "");
 
-/* OP may be any comparion operator. */
+/* OP may be any comparison operator. */
 
 #define _lu_assert_int(X, OP, Y) do { \
        int _lu_x = (X); \
@@ -33,4 +33,3 @@
 #define lu_assert_dbl_le(X, Y) _lu_assert_dbl(X, <=, Y)
 #define lu_assert_dbl_gt(X, Y) _lu_assert_dbl(X, >, Y)
 #define lu_assert_dbl_ge(X, Y) _lu_assert_dbl(X, >=, Y)
-
index 69ac68c..c3d415c 100644 (file)
@@ -1,5 +1,4 @@
 #/bin/bash
-#TODO: dispatch in several files and run in parallel ?!
 
 #initialize main.c
 printf '#include <stdlib.h>\n' > main.c