File tree Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Original file line number Diff line number Diff line change 1
- ./test_others.bash
2
- ../../../test/test_others.bash
3
- ../../../test/test_others.bash
4
- ../../../test/test_others.bash
5
- ../../../test/test_others.bash
6
- ../../../test/test_others.bash
7
- ../../../test/test_others.bash
8
- ../../../test/test_others.bash
Original file line number Diff line number Diff line change 2
2
./test_builtins.bash
3
3
./test_brace.bash
4
4
./test_compound.bash
5
+ ./test_others.bash
5
6
./test_job.bash
6
- ../../../test/test_others.bash
7
- ../../../test/test_others.bash
8
- ../../../test/test_others.bash
9
- ../../../test/test_others.bash
10
- ../../../test/test_others.bash
11
- ../../../test/test_others.bash
12
- ../../../test/test_others.bash
7
+ ./test/test_compound.bash
8
+ ./test/test_compound.bash
Original file line number Diff line number Diff line change @@ -763,11 +763,11 @@ res=$($com -c '[[ /etc/passwd -ef /tmp/aaaaa ]]')
763
763
res=$( $com -c ' [[ /etc/aaaaaa -ef /etc/passwd ]]' )
764
764
[ " $? " = " 1" ] || err $LINENO
765
765
766
- res=$( $com -c ' touch /tmp/$$ ; touch /tmp/$$x; [[ /tmp/$$x -nt /tmp/$$ ]]' )
766
+ res=$( $com -c ' touch /tmp/$$ ; sleep 0.01 ; touch /tmp/$$x; [[ /tmp/$$x -nt /tmp/$$ ]]' )
767
767
[ " $? " = " 0" ] || err $LINENO
768
768
rm -f /tmp/$$ *
769
769
770
- res=$( $com -c ' touch /tmp/$$ ; touch /tmp/$$x; [[ /tmp/$$ -nt /tmp/$$x ]]' )
770
+ res=$( $com -c ' touch /tmp/$$ ; sleep 0.01 ; touch /tmp/$$x; [[ /tmp/$$ -nt /tmp/$$x ]]' )
771
771
[ " $? " = " 1" ] || err $LINENO
772
772
rm -f /tmp/$$ *
773
773
You can’t perform that action at this time.
0 commit comments