summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorkxxt <rsworktech@outlook.com>2022-09-21 19:19:09 +0800
committerkxxt <rsworktech@outlook.com>2022-09-21 19:19:09 +0800
commitcb542f938709cdae114aa6c30437010cfbc8338b (patch)
tree14b53010dbdb64cdd41850410e45dced64e3df6e /ci
parentd4c4e9214b9e86cdbf68b7f6ca3f064ec148f2e5 (diff)
downloadrust-libc-cb542f938709cdae114aa6c30437010cfbc8338b.tar.gz
refactor: use grep -E instead of egrep
Diffstat (limited to 'ci')
-rwxr-xr-xci/run.sh2
-rwxr-xr-xci/test-runner-linux4
2 files changed, 3 insertions, 3 deletions
diff --git a/ci/run.sh b/ci/run.sh
index 3ef84d42ac..4de8087699 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -79,7 +79,7 @@ if [ "$QEMU" != "" ]; then
-net user \
-nographic \
-vga none 2>&1 | tee "${CARGO_TARGET_DIR}/out.log"
- exec egrep "^(PASSED)|(test result: ok)" "${CARGO_TARGET_DIR}/out.log"
+ exec grep -E "^(PASSED)|(test result: ok)" "${CARGO_TARGET_DIR}/out.log"
fi
if [ "$TARGET" = "s390x-unknown-linux-gnu" ]; then
diff --git a/ci/test-runner-linux b/ci/test-runner-linux
index cad31ec4c0..3ce551944d 100755
--- a/ci/test-runner-linux
+++ b/ci/test-runner-linux
@@ -20,6 +20,6 @@ timeout 30s qemu-system-$arch \
-append init=/run_prog.sh > output || true
# remove kernel messages
-tr -d '\r' < output | egrep -v '^\['
+tr -d '\r' < output | grep -Ev '^\['
-egrep "(PASSED)|(test result: ok)" output > /dev/null
+grep -E "(PASSED)|(test result: ok)" output > /dev/null