Skip to content

Commit 9a4ef70

Browse files
authored
一部のINDEXEDファイルのバグを修正した (#23)
* INDEXEDファイルをオープンしたときのステータスコードを修正した。 * DELETEやREWRITEの動作を修正した。
1 parent a204ddd commit 9a4ef70

Some content is hidden

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

53 files changed

+136
-1157
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
This compiler is deeply inspired by ["opensource COBOL"](https://github.com/opensourcecobol/opensource-cobol) which translates COBOL programs to C programs.
77
(In fact, this repository contains a lot of source files of ["opensource COBOL"](https://github.com/opensourcecobol/opensource-cobol))
88

9-
**NOTE**: This package is the Developers Edition.
10-
119
## Requirements and Installation
1210

1311
See [Installation page](https://github.com/opensourcecobol/opensourcecobol4j/wiki/Installation).
@@ -28,7 +26,7 @@ java [PROGRAM-ID]
2826
## The progress of the development
2927

3028
The functions in the following "implemented" list are tested using [NIST COBOL85 test suite](https://www.itl.nist.gov/div897/ctg/cobol_form.htm)
31-
and **96%** of the test cases are passed.
29+
and **99%** of the test cases are passed.
3230

3331
Implemented.
3432

@@ -48,4 +46,4 @@ Not Implemented.
4846
Known bugs
4947

5048
* Cannot call inline programs.
51-
* Rewrite wrong data to indexed files with alternate keys in some cases.
49+
* Read wrong data from indexed files with alternate duplicate keys in some cases.

README_JP.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# opensource COBOL 4j
22

3-
gEnglish version README](https://github.com/opensourcecobol/opensourcecobol4j/blob/develop/README.md)
3+
[English version README](https://github.com/opensourcecobol/opensourcecobol4j/blob/develop/README.md)
44

55
opensource COBOL 4jはCOBOLソースコードをJavaソースコードに変換するCOBOLコンパイラです.
66
opensource COBOL 4jはCOBOLからCに変換するCOBOLコンパイラ["opensource COBOL"](https://github.com/opensourcecobol/opensource-cobol)をもとに開発されています.
77

8-
**注意**: 現在は開発者バージョンです
9-
108
## インストール
119

1210
[インストールページ](https://github.com/opensourcecobol/opensourcecobol4j/wiki/Installation_JP)をご覧ください.
@@ -26,7 +24,7 @@ java [PROGRAM-ID]
2624

2725
## The progress of the development
2826

29-
下記の実装済みリストにある機能は[NIST COBOL85 test suite](https://www.itl.nist.gov/div897/ctg/cobol_form.htm)でテストされており,**96%** のテストケースをパスしています.
27+
下記の実装済みリストにある機能は[NIST COBOL85 test suite](https://www.itl.nist.gov/div897/ctg/cobol_form.htm)でテストされており,**969** のテストケースをパスしています.
3028

3129
実装済み
3230

@@ -46,4 +44,4 @@ java [PROGRAM-ID]
4644
既知の不具合
4745

4846
* 同一ソースコード内の別プログラムのCALLができない.
49-
* ALTERNATE KEYが指定されたINDEXEDファイルに対するREWRITE文の不具合.
47+
* DUPLICATE指定されたALTERNATE KEY付きのINDEXEDファイルに対するREAD文の不具合.

0 commit comments

Comments
 (0)