diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-11-04 00:59:01 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-11-04 00:59:01 +0300 |
commit | 36c7526d60319289954bb0b49e9f4cb2c6dfe9da (patch) | |
tree | 229ee89709c7f274e633c70f56118eee94d910f5 /tests/monkey-parse.apl | |
parent | 4b05f261debf2320cd5b66df4a7becc36c4a8916 (diff) | |
download | sciteco-36c7526d60319289954bb0b49e9f4cb2c6dfe9da.tar.gz |
monkey-test.apl: avoid some bogus failures due to insufficient handling of the pclose() return value
Diffstat (limited to 'tests/monkey-parse.apl')
-rwxr-xr-x | tests/monkey-parse.apl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/monkey-parse.apl b/tests/monkey-parse.apl index 9273962..3984d44 100755 --- a/tests/monkey-parse.apl +++ b/tests/monkey-parse.apl @@ -2,7 +2,7 @@ ⍝ Calculate frequency distribution of the characters/glyphs in a given number of input files. ⍝ This will be the input for monkey-test.apl. Files ← 4↓⎕ARG -Data ← 19 ⎕CR ∊⎕FIO['read_file']¨Files +Data ← 19 ⎕CR ∊⎕FIO.read_file¨Files ∇ Dist←GetDist Data; i; C ⍝Dist ← 38 ⌷CR ↑⍴Data ⍝ associative array |