diff options
author | Bart Van Assche <bvanassche@acm.org> | 2020-06-28 12:58:23 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-06-28 14:03:56 -0600 |
commit | 930da55e31b3b1e9c2257d51a58fe4d3564efc1b (patch) | |
tree | 371b7c70892ecf6f838f53f9ff61bb89b7b75c87 | |
parent | 1107d85d9edf64bb776e851bd5cfe7149f6d206f (diff) | |
download | liburing-930da55e31b3b1e9c2257d51a58fe4d3564efc1b.tar.gz liburing-930da55e31b3b1e9c2257d51a58fe4d3564efc1b.tar.bz2 |
.travis.yml: Run tests as root and ignore test results
Since many tests require root privileges, run the tests with root privileges.
Ignore the test results because the kernel of Travis VMs is too old for all
tests to pass.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 69da3c0..e02fdd0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,4 +19,4 @@ before_install: - EXTRA_CFLAGS="-Werror" script: - ./configure && make - - make runtests + - sudo make runtests || true |