File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
#! /bin/bash
16
- files=$( find ../.. -name ' *.rn' | egrep -v ' escapeatend|syntaxError' )
16
+ files=$( find ../.. -name ' *.rn' | grep -E -v ' escapeatend|syntaxError' )
17
17
./pegparser $files
Original file line number Diff line number Diff line change 14
14
#
15
15
#! /bin/bash
16
16
for test in errortests/* .rn; do
17
- result=$( ./runl " $test " | egrep " (Exiting due to error|Exception)" )
17
+ result=$( ./runl " $test " | grep -E " (Exiting due to error|Exception)" )
18
18
if [[ " $result " != " " ]]; then
19
19
echo " $test passed"
20
20
else
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ for test in errortests/*.rn; do
49
49
executable=$( echo " $test " | sed ' s/\.rn$//' )
50
50
result=$( ./rune " $args " -x " $test " | grep " Exiting due to error" )
51
51
if [[ " $result " == " " ]]; then
52
- result=$( " ./$executable " | egrep " (Exception|Panic)" )
52
+ result=$( " ./$executable " | grep -E " (Exception|Panic)" )
53
53
fi
54
54
if [[ " $result " != " " ]]; then
55
55
echo " $test passed"
You can’t perform that action at this time.
0 commit comments