bash/bash-tty-tests.patch
Siteshwar Vashisht 91692f161e Rebase to bash-5.0
- Remove 'bash-2.02-security.patch' patch as it does not seem to be
needed.
- Remove 'bash-2.05b-xcc.patch' as this change is already in upstream.
- Remove 'bash-4.1-defer-sigchld-trap.patch' as this patch was doing
nothing and this bug that it tried to solve should be fixed in upstream
https://lists.gnu.org/archive/html/bug-bash/2012-03/msg00045.html
- Remove 'bash-4.4-coverity.patch' as it has been upstreamed.
- Delete several other patches that were not removed while rebasing to
bash-4.4.

Resolves: #1675080
2019-02-15 05:04:26 +01:00

62 lines
1.3 KiB
Diff

diff --git a/tests/exec.right b/tests/exec.right
index 6075cc8..0b3f02c 100644
--- a/tests/exec.right
+++ b/tests/exec.right
@@ -51,7 +51,6 @@ this is ohio-state
0
1
testb
-expand_aliases on
1
1
1
diff --git a/tests/execscript b/tests/execscript
index c1819de..9227a4a 100644
--- a/tests/execscript
+++ b/tests/execscript
@@ -108,8 +108,6 @@ ${THIS_SH} ./exec6.sub
# checks for properly deciding what constitutes an executable file
${THIS_SH} ./exec7.sub
-${THIS_SH} -i ${PWD}/exec8.sub
-
${THIS_SH} ./exec9.sub
${THIS_SH} ./exec10.sub
diff --git a/tests/read.right b/tests/read.right
index 73cb704..a92fe7f 100644
--- a/tests/read.right
+++ b/tests/read.right
@@ -33,14 +33,6 @@ a = abcdefg
a = xyz
a = -xyz 123-
a = abc
-timeout 1: ok
-
-timeout 2: ok
-
-./read2.sub: line 23: read: -3: invalid timeout specification
-1
-
-abcde
./read3.sub: line 4: read: -1: invalid number
abc
ab
diff --git a/tests/read.tests b/tests/read.tests
index f67cd00..083f4a4 100644
--- a/tests/read.tests
+++ b/tests/read.tests
@@ -82,9 +82,6 @@ echo " foo" | { IFS=$':' ; read line; recho "$line"; }
# test read -d delim behavior
${THIS_SH} ./read1.sub
-# test read -t timeout behavior
-${THIS_SH} ./read2.sub
-
# test read -n nchars behavior
${THIS_SH} ./read3.sub
--
2.17.2