diff options
Diffstat (limited to 'tests/tests2')
| -rw-r--r-- | tests/tests2/84_hex-float.c (renamed from tests/tests2/84-hex-float.c) | 0 | ||||
| -rw-r--r-- | tests/tests2/84_hex-float.expect (renamed from tests/tests2/84-hex-float.expect) | 0 | ||||
| -rw-r--r-- | tests/tests2/85_asm-outside-function.c (renamed from tests/tests2/85-asm-outside-function.c) | 0 | ||||
| -rw-r--r-- | tests/tests2/85_asm-outside-function.expect (renamed from tests/tests2/85-asm-outside-function.expect) | 0 | ||||
| -rw-r--r--[-rwxr-xr-x] | tests/tests2/86_memory-model.c (renamed from tests/tests2/86-memory-model.c) | 76 | ||||
| -rw-r--r--[-rwxr-xr-x] | tests/tests2/86_memory-model.expect (renamed from tests/tests2/86-memory-model.expect) | 2 | ||||
| -rw-r--r-- | tests/tests2/89_nocode_wanted.c (renamed from tests/tests2/82_nocode_wanted.c) | 12 | ||||
| -rw-r--r-- | tests/tests2/89_nocode_wanted.expect (renamed from tests/tests2/82_nocode_wanted.expect) | 0 | ||||
| -rw-r--r-- | tests/tests2/90_struct-init.c (renamed from tests/tests2/86-struct-init.c) | 0 | ||||
| -rw-r--r-- | tests/tests2/90_struct-init.expect (renamed from tests/tests2/86-struct-init.expect) | 0 | ||||
| -rw-r--r-- | tests/tests2/91_ptr_longlong_arith32.c (renamed from tests/tests2/87_ptr_longlong_arith32.c) | 0 | ||||
| -rw-r--r-- | tests/tests2/91_ptr_longlong_arith32.expect (renamed from tests/tests2/87_ptr_longlong_arith32.expect) | 0 |
12 files changed, 45 insertions, 45 deletions
diff --git a/tests/tests2/84-hex-float.c b/tests/tests2/84_hex-float.c index 0ef09bf..0ef09bf 100644 --- a/tests/tests2/84-hex-float.c +++ b/tests/tests2/84_hex-float.c diff --git a/tests/tests2/84-hex-float.expect b/tests/tests2/84_hex-float.expect index 2175385..2175385 100644 --- a/tests/tests2/84-hex-float.expect +++ b/tests/tests2/84_hex-float.expect diff --git a/tests/tests2/85-asm-outside-function.c b/tests/tests2/85_asm-outside-function.c index dc5639a..dc5639a 100644 --- a/tests/tests2/85-asm-outside-function.c +++ b/tests/tests2/85_asm-outside-function.c diff --git a/tests/tests2/85-asm-outside-function.expect b/tests/tests2/85_asm-outside-function.expect index dcf02b2..dcf02b2 100644 --- a/tests/tests2/85-asm-outside-function.expect +++ b/tests/tests2/85_asm-outside-function.expect diff --git a/tests/tests2/86-memory-model.c b/tests/tests2/86_memory-model.c index ca30737..744c3e2 100755..100644 --- a/tests/tests2/86-memory-model.c +++ b/tests/tests2/86_memory-model.c @@ -1,38 +1,38 @@ -#include <stdio.h>
-
-int
-main()
-{
-#if defined(__LLP64__)
- if (sizeof(short) == 2
- && sizeof(int) == 4
- && sizeof(long int) == 4
- && sizeof(long long int) == 8
- && sizeof(void*) == 8) {
- (void)printf("Ok\n");
- } else {
- (void)printf("KO __LLP64__\n");
- }
-#elif defined(__LP64__)
- if (sizeof(short) == 2
- && sizeof(int) == 4
- && sizeof(long int) == 8
- && sizeof(long long int) == 8
- && sizeof(void*) == 8) {
- (void)printf("Ok\n");
- } else {
- (void)printf("KO __LP64__\n");
- }
-#elif defined(__ILP32__)
- if (sizeof(short) == 2
- && sizeof(int) == 4
- && sizeof(long int) == 4
- && sizeof(void*) == 4) {
- (void)printf("Ok\n");
- } else {
- (void)printf("KO __ILP32__\n");
- }
-#else
- (void)printf("KO no __*LP*__ defined.\n");
-#endif
-}
+#include <stdio.h> + +int +main() +{ +#if defined(__LLP64__) + if (sizeof(short) == 2 + && sizeof(int) == 4 + && sizeof(long int) == 4 + && sizeof(long long int) == 8 + && sizeof(void*) == 8) { + (void)printf("Ok\n"); + } else { + (void)printf("KO __LLP64__\n"); + } +#elif defined(__LP64__) + if (sizeof(short) == 2 + && sizeof(int) == 4 + && sizeof(long int) == 8 + && sizeof(long long int) == 8 + && sizeof(void*) == 8) { + (void)printf("Ok\n"); + } else { + (void)printf("KO __LP64__\n"); + } +#elif defined(__ILP32__) + if (sizeof(short) == 2 + && sizeof(int) == 4 + && sizeof(long int) == 4 + && sizeof(void*) == 4) { + (void)printf("Ok\n"); + } else { + (void)printf("KO __ILP32__\n"); + } +#else + (void)printf("KO no __*LP*__ defined.\n"); +#endif +} diff --git a/tests/tests2/86-memory-model.expect b/tests/tests2/86_memory-model.expect index a28de60..7326d96 100755..100644 --- a/tests/tests2/86-memory-model.expect +++ b/tests/tests2/86_memory-model.expect @@ -1 +1 @@ -Ok
+Ok diff --git a/tests/tests2/82_nocode_wanted.c b/tests/tests2/89_nocode_wanted.c index a0ec890..73e0a4b 100644 --- a/tests/tests2/82_nocode_wanted.c +++ b/tests/tests2/89_nocode_wanted.c @@ -3,7 +3,7 @@ static void kb_wait_1(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ while (1) @@ -17,7 +17,7 @@ static void kb_wait_2(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ for (;;) @@ -31,7 +31,7 @@ static void kb_wait_2_1(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ do { @@ -46,7 +46,7 @@ static void kb_wait_2_2(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ label: @@ -61,7 +61,7 @@ static void kb_wait_3(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ int i = 1; @@ -78,7 +78,7 @@ static void kb_wait_4(void) { unsigned long timeout = 2; do { - (1 ? + (1 ? printf("timeout=%ld\n", timeout) : ({ switch(timeout) { diff --git a/tests/tests2/82_nocode_wanted.expect b/tests/tests2/89_nocode_wanted.expect index c44d4ea..c44d4ea 100644 --- a/tests/tests2/82_nocode_wanted.expect +++ b/tests/tests2/89_nocode_wanted.expect diff --git a/tests/tests2/86-struct-init.c b/tests/tests2/90_struct-init.c index fd212ba..fd212ba 100644 --- a/tests/tests2/86-struct-init.c +++ b/tests/tests2/90_struct-init.c diff --git a/tests/tests2/86-struct-init.expect b/tests/tests2/90_struct-init.expect index adda76d..adda76d 100644 --- a/tests/tests2/86-struct-init.expect +++ b/tests/tests2/90_struct-init.expect diff --git a/tests/tests2/87_ptr_longlong_arith32.c b/tests/tests2/91_ptr_longlong_arith32.c index bf07915..bf07915 100644 --- a/tests/tests2/87_ptr_longlong_arith32.c +++ b/tests/tests2/91_ptr_longlong_arith32.c diff --git a/tests/tests2/87_ptr_longlong_arith32.expect b/tests/tests2/91_ptr_longlong_arith32.expect index f91e4b4..f91e4b4 100644 --- a/tests/tests2/87_ptr_longlong_arith32.expect +++ b/tests/tests2/91_ptr_longlong_arith32.expect |
