Skip to content

Commit

Permalink
Fix two incorrect test cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoldrobbins committed Nov 11, 2023
1 parent d801514 commit 6e222fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion testdir/T.csv
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,4 @@ a''b [a''b]
a, [a][]
"", [][]
, [][]
a"b [a"b]
!!!!
5 changes: 3 additions & 2 deletions testdir/T.flags
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ grep 'unknown option' foo >/dev/null || echo 'T.flags: bad unknown option'
$awk -F >foo 2>&1
grep 'no field separator' foo >/dev/null || echo 'T.flags: bad missing field separator'

$awk -F '' >foo 2>&1
grep 'field separator FS is empty' foo >/dev/null || echo 'T.flags: bad empty field separator'
### Awk is now like gawk and splits into separate characters if FS = ""
# $awk -F '' >foo 2>&1
# grep 'field separator FS is empty' foo >/dev/null || echo 'T.flags: bad empty field separator'

0 comments on commit 6e222fe

Please sign in to comment.