|
1 | 1 | ascii = executable('ascii', 'ascii.f90') |
2 | | -test('Ascii Special', ascii, |
3 | | - suite: 'char', |
4 | | - timeout: 10) |
| 2 | +test('Ascii Special', ascii, suite: 'char', timeout: 10) |
| 3 | + |
| 4 | +char_array = executable('character_array', 'character_array.f90') |
| 5 | +test('CharacterArray', char_array, suite: 'char', timeout: 10) |
5 | 6 |
|
6 | 7 | split = executable('split', 'split_string.f90') |
7 | | -test('Split Character', split, |
8 | | - suite: 'char', |
9 | | - timeout: 10) |
| 8 | +test('Split Character', split, suite: 'char', timeout: 10) |
10 | 9 |
|
11 | 10 | printorwrite = executable('printorwrite', 'print_vs_write.f90') |
12 | | -test('UTF8', printorwrite, |
13 | | - suite: 'char', |
14 | | - timeout: 10) |
| 11 | +test('UTF8', printorwrite, suite: 'char', timeout: 10) |
15 | 12 |
|
16 | 13 | str2int = executable('str2int', 'str2int.f90') |
17 | | -test('Str2Int', str2int, |
18 | | - suite: 'char', |
19 | | - timeout: 10) |
| 14 | +test('Str2Int', str2int, suite: 'char', timeout: 10) |
20 | 15 |
|
21 | 16 | special_char = executable('special_char', 'special_characters.f90') |
22 | | -test('Special Characters', special_char, |
23 | | - suite: 'char', |
24 | | - timeout: 10) |
| 17 | +test('Special Characters', special_char, suite: 'char', timeout: 10) |
25 | 18 |
|
26 | 19 | charlen = executable('charlen', 'charlen.f90') |
27 | | -test('Character Len', charlen, |
28 | | - suite: 'char', |
29 | | - timeout: 10) |
| 20 | +test('Character Len', charlen, suite: 'char', timeout: 10) |
30 | 21 |
|
31 | 22 | overwrite_stdout = executable('overwrite_stdout', 'overwrite_stdout.f90', |
32 | 23 | link_with: sleep_std) |
33 | | -test('Overwrite Stdout', overwrite_stdout, |
34 | | - suite: 'char', |
35 | | - timeout: 10) |
| 24 | +test('Overwrite Stdout', overwrite_stdout, suite: 'char', timeout: 10) |
0 commit comments