diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-26 19:26:01 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-26 19:26:01 -0400 |
commit | 5ae99da29594cce5964c323e79a6e7632272f6ae (patch) | |
tree | 12958b36d467d07a4b9e62f957fd0114d7997da0 | |
parent | ce56ba16a3cfb485cd052e31206593dc0f395f34 (diff) |
test: remove legacy systemd check
-rw-r--r-- | test/librechroot-test.sh | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/test/librechroot-test.sh b/test/librechroot-test.sh index c3026da..664f3dc 100644 --- a/test/librechroot-test.sh +++ b/test/librechroot-test.sh @@ -42,14 +42,7 @@ it_respects_exit_status_if_out_isnt_a_tty() ( r=0 { testsudo librechroot -l "$roundup_test_name" run bash -c 'exit 3' | cat; } || r=$? - # Work around http://lists.freedesktop.org/archives/systemd-devel/2014-June/020685.html - # Hopefully the fix gets merged for 215 - systemd_ver=$(systemd-nspawn --version|sed -n 's|^systemd ||p') - if [[ $systemd_ver =~ 213|214 ]]; then - [[ $r == 1 ]] - else - [[ $r == 3 ]] - fi + [[ $r == 3 ]] ) it_creates_ca_certificates() { |