diff options
author | Ammar Faizi <ammarfaizi2@gnuweeb.org> | 2022-04-23 03:35:40 +0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-04-22 15:15:24 -0600 |
commit | 6966b0a9e62f2b1c1b9a72156de4ae908f2b23b9 (patch) | |
tree | 851793f52d6917b081cdbb8cc1a7aefd9969d44b | |
parent | 0664b331b30842d1576748604bfa4193f470cd67 (diff) | |
download | liburing-6966b0a9e62f2b1c1b9a72156de4ae908f2b23b9.tar.gz liburing-6966b0a9e62f2b1c1b9a72156de4ae908f2b23b9.tar.bz2 |
test/Makefile: Sort the test file list alphabetically
Make it easy to manage and find by sorting it alphabetically. Also, add
a comment to remind us to keep it sorted alphabetically.
Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 444c749..923f984 100644 --- a/test/Makefile +++ b/test/Makefile @@ -33,6 +33,7 @@ override CXXFLAGS += $(XCFLAGS) -std=c++11 -DLIBURING_BUILD_TEST LDFLAGS ?= override LDFLAGS += -L../src/ -luring -lpthread +# Please keep this list sorted alphabetically. test_srcs := \ 232c93d07b74.c \ 35fa71a030ca.c \ @@ -133,6 +134,7 @@ test_srcs := \ short-read.c \ shutdown.c \ sigfd-deadlock.c \ + skip-cqe.c \ socket-rw.c \ socket-rw-eagain.c \ socket-rw-offset.c \ @@ -159,7 +161,6 @@ test_srcs := \ tty-write-dpoll.c \ unlink.c \ wakeup-hang.c \ - skip-cqe.c \ # EOL |