aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozan yigit <ozan.yigit@gmail.com>2023-11-15 16:27:01 -0500
committerozan yigit <ozan.yigit@gmail.com>2023-11-15 16:27:01 -0500
commit4701f97675afe0425e0480ea6e86504110121a28 (patch)
treeb625e317705b97530bfc8a1be7295c7ca870bf31
parentc6a474b1744122b5631c020b70616845353f8576 (diff)
parent6e222fe5c0df10f406dd61a9ae587a1d86bd5d3c (diff)
downloadone-true-awk-4701f97675afe0425e0480ea6e86504110121a28.tar.gz
arnold's test fixes
-rwxr-xr-xtestdir/T.csv1
-rwxr-xr-xtestdir/T.flags5
2 files changed, 3 insertions, 3 deletions
diff --git a/testdir/T.csv b/testdir/T.csv
index 10da1ea..79c1510 100755
--- a/testdir/T.csv
+++ b/testdir/T.csv
@@ -77,5 +77,4 @@ a''b [a''b]
a, [a][]
"", [][]
, [][]
-a"b [a"b]
!!!!
diff --git a/testdir/T.flags b/testdir/T.flags
index 33d7c8d..17ce561 100755
--- a/testdir/T.flags
+++ b/testdir/T.flags
@@ -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'