Skip to content

Commit 1e6c1a6

Browse files
committed
Update backcomp.at (focussing on coverage of statements)
1 parent a137b90 commit 1e6c1a6

File tree

5 files changed

+2452
-7855
lines changed

5 files changed

+2452
-7855
lines changed

libcob/ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
* common.c: add missing include libxml/parser.h
123123

124124
2024-02-26 Boris Eng <[email protected]>
125-
FR #488: thread-safety for string handling using state vars
125+
FR #488: using state structures instead of state vars for strings
126126
* strings.c: moved static variables to structures
127127

128128
2024-01-25 David Declerck <[email protected]>

libcob/common.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,6 +1332,7 @@ typedef struct __cob_module {
13321332
const char *section_name; /* name of current active section */
13331333
const char *paragraph_name; /* name of current active pagagraph */
13341334
enum cob_statement statement; /* statement currently executed */
1335+
13351336
} cob_module;
13361337

13371338

tests/ChangeLog

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33

44
* atlocal_win: fix path-related issues in Windows builds
55

6-
2024-02-26 Boris Eng <[email protected]>
7-
8-
* testsuite.at: added a new test suite to test the backward compatibility
9-
of strings functions (INSPECT, STRING, UNSTRING) for versions of compilers
10-
not using thread-safe functions for strings
11-
126
2023-07-10 Simon Sobisch <[email protected]>
137

148
* atlocal_win: updated to current atlocal.in
@@ -36,8 +30,7 @@
3630
2024-02-26 Boris Eng <[email protected]>
3731

3832
* testsuite.at: added a new test suite to test the backward compatibility
39-
of strings functions (INSPECT, STRING, UNSTRING) for versions of compilers
40-
not using thread-safe functions for strings
33+
of strings functions (INSPECT, STRING, UNSTRING)
4134

4235
2023-02-21 Fabrice Le Fessant <[email protected]>
4336

tests/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ testsuite_sources = \
6464
testsuite.src/data_packed.at \
6565
testsuite.src/data_pointer.at \
6666
testsuite.src/numeric-dump.cob \
67-
testsuite.src/numeric-display.cob
67+
testsuite.src/numeric-display.cob \
68+
testsuite.src/backcomp.at
6869

6970
testsuite_manual_sources = \
7071
testsuite.src/run_manual_screen.at

0 commit comments

Comments
 (0)