Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2018-04-09 01:26:03 +0300
committerChristopher Haster <chaster@utexas.edu>2018-04-09 01:31:09 +0300
commit43eac3083bda95006a9cfaea743e95bb358b5bc5 (patch)
treef0dcef331320fe42e3f40fe521dce1da17064f62 /tests
parentdbc3cb1798b0c2b4fd744c753154d654dfa8e118 (diff)
Renamed test_parallel tests to test_interespersed
The name test_parallel gave off the incorrect impression that these tests are multithreaded.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_interspersed.sh (renamed from tests/test_parallel.sh)6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_parallel.sh b/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;