Skip to content

Commit 43eac30

Browse files
committed
Renamed test_parallel tests to test_interespersed
The name test_parallel gave off the incorrect impression that these tests are multithreaded.
1 parent dbc3cb1 commit 43eac30

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ size: $(OBJ)
3333
$(SIZE) -t $^
3434

3535
.SUFFIXES:
36-
test: test_format test_dirs test_files test_seek test_truncate test_parallel \
37-
test_alloc test_paths test_orphan test_move test_corrupt
36+
test: test_format test_dirs test_files test_seek test_truncate \
37+
test_interspersed test_alloc test_paths test_orphan test_move test_corrupt
3838
test_%: tests/test_%.sh
3939
ifdef QUIET
4040
@./$< | sed -n '/^[-=]/p'

tests/test_parallel.sh renamed to tests/test_interspersed.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22
set -eu
33

4-
echo "=== Parallel tests ==="
4+
echo "=== Interspersed tests ==="
55
rm -rf blocks
66
tests/test.py << TEST
77
lfs_format(&lfs, &cfg) => 0;
88
TEST
99

10-
echo "--- Parallel file test ---"
10+
echo "--- Interspersed file test ---"
1111
tests/test.py << TEST
1212
lfs_mount(&lfs, &cfg) => 0;
1313
lfs_file_open(&lfs, &file[0], "a", LFS_O_WRONLY | LFS_O_CREAT) => 0;
@@ -77,7 +77,7 @@ tests/test.py << TEST
7777
lfs_unmount(&lfs) => 0;
7878
TEST
7979

80-
echo "--- Parallel remove file test ---"
80+
echo "--- Interspersed remove file test ---"
8181
tests/test.py << TEST
8282
lfs_mount(&lfs, &cfg) => 0;
8383
lfs_file_open(&lfs, &file[0], "e", LFS_O_WRONLY | LFS_O_CREAT) => 0;

0 commit comments

Comments
 (0)