Skip to content

Commit 57a9e15

Browse files
authored
Merge pull request #75 from jayrm/fbc-tests
fbc-tests: normalize suite names
2 parents 56d3358 + f1553ba commit 57a9e15

File tree

110 files changed

+329
-155
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+329
-155
lines changed

tests/boolean/boolean-conversions.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
const FALSE = 0
99
const TRUE = -1
1010

11-
SUITE( fbc_tests.boolean_.conversions )
11+
SUITE( fbc_tests.boolean_.boolean_conversions )
1212

1313
TEST( compileTime )
1414

tests/boolean/boolean_args.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define FALSE 0
99
#define TRUE (-1)
1010

11-
SUITE( fbc_tests.boolean_.args )
11+
SUITE( fbc_tests.boolean_.boolean_args )
1212

1313
''
1414
sub foo1( byval b as boolean, byval i as integer )

tests/boolean/boolean_bitfield.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define FALSE 0
99
#define TRUE (-1)
1010

11-
SUITE( fbc_tests.boolean_.bitfield )
11+
SUITE( fbc_tests.boolean_.boolean_bitfield )
1212
type T1
1313
union
1414
type

tests/boolean/boolean_bop.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define FALSE 0
99
#define TRUE (-1)
1010

11-
SUITE( fbc_tests.boolean_.bop )
11+
SUITE( fbc_tests.boolean_.boolean_bop )
1212

1313
''
1414
TEST( bop_const )

tests/boolean/boolean_data.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ data -1, &hffffffff
2222
data 0, &b0
2323
data -1, &b1
2424

25-
SUITE( fbc_tests.boolean_.data_ )
25+
SUITE( fbc_tests.boolean_.boolean_data )
2626

2727
'' RTLIB - DATAREADBOOL
2828

tests/boolean/boolean_false_true.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ enum ENUM_BOOLEAN
3030
ENUM_TRUE
3131
end enum
3232

33-
SUITE( fbc_tests.boolean_.false_true )
33+
SUITE( fbc_tests.boolean_.boolean_false_true )
3434

3535
''
3636
TEST( intrinsic )

tests/boolean/boolean_field.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define FALSE 0
99
#define TRUE (-1)
1010

11-
SUITE( fbc_tests.boolean_.field_ )
11+
SUITE( fbc_tests.boolean_.boolean_field )
1212

1313
type T1
1414
i as integer

tests/boolean/boolean_file.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
const FALSE_STRING = "false"
1212
const TRUE_STRING = "true"
1313

14-
SUITE( fbc_tests.boolean_.file_ )
14+
SUITE( fbc_tests.boolean_.boolean_file )
1515

1616
'' RTLIB - PRINTBOOL
1717
'' - WRITEBOOL

tests/boolean/boolean_ptr.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define FALSE 0
99
#define TRUE (-1)
1010

11-
SUITE( fbc_tests.boolean_.ptr_ )
11+
SUITE( fbc_tests.boolean_.boolean_ptr )
1212

1313
''
1414
TEST( compare )

tests/boolean/boolean_str.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
const FALSE_STRING = "false"
1212
const TRUE_STRING = "true"
1313

14-
SUITE( fbc_tests.boolean_.str_ )
14+
SUITE( fbc_tests.boolean_.boolean_str )
1515

1616
'' RTLIB - BOOL2STR
1717

0 commit comments

Comments
 (0)