From 43eac3083bda95006a9cfaea743e95bb358b5bc5 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Sun, 8 Apr 2018 17:26:03 -0500 Subject: [PATCH] Renamed test_parallel tests to test_interespersed The name test_parallel gave off the incorrect impression that these tests are multithreaded. --- Makefile | 4 ++-- tests/{test_parallel.sh => test_interspersed.sh} | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename tests/{test_parallel.sh => test_interspersed.sh} (98%) diff --git a/Makefile b/Makefile index ee71793..c093313 100644 --- a/Makefile +++ b/Makefile @@ -33,8 +33,8 @@ size: $(OBJ) $(SIZE) -t $^ .SUFFIXES: -test: test_format test_dirs test_files test_seek test_truncate test_parallel \ - test_alloc test_paths test_orphan test_move test_corrupt +test: test_format test_dirs test_files test_seek test_truncate \ + test_interspersed test_alloc test_paths test_orphan test_move test_corrupt test_%: tests/test_%.sh ifdef QUIET @./$< | sed -n '/^[-=]/p' diff --git a/tests/test_parallel.sh b/tests/test_interspersed.sh similarity index 98% rename from tests/test_parallel.sh rename to tests/test_interspersed.sh index 71c9c1f..52e24bc 100755 --- a/tests/test_parallel.sh +++ b/tests/test_interspersed.sh @@ -1,13 +1,13 @@ #!/bin/bash set -eu -echo "=== Parallel tests ===" +echo "=== Interspersed tests ===" rm -rf blocks tests/test.py << TEST lfs_format(&lfs, &cfg) => 0; TEST -echo "--- Parallel file test ---" +echo "--- Interspersed file test ---" tests/test.py << TEST lfs_mount(&lfs, &cfg) => 0; lfs_file_open(&lfs, &file[0], "a", LFS_O_WRONLY | LFS_O_CREAT) => 0; @@ -77,7 +77,7 @@ tests/test.py << TEST lfs_unmount(&lfs) => 0; TEST -echo "--- Parallel remove file test ---" +echo "--- Interspersed remove file test ---" tests/test.py << TEST lfs_mount(&lfs, &cfg) => 0; lfs_file_open(&lfs, &file[0], "e", LFS_O_WRONLY | LFS_O_CREAT) => 0;