diff options
author | Christopher Baines <mail@cbaines.net> | 2021-02-12 08:47:09 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-02-12 08:47:09 +0000 |
commit | 9dde93422c7cbef787ecb34f6346b5e5a5fbeed9 (patch) | |
tree | a3ada10a0f32c27c995cd16d0f6b3d6fc54773ff /tests | |
parent | 3368a64c04835a15d7539479ae97e6ce72cf9d5f (diff) | |
download | data-service-9dde93422c7cbef787ecb34f6346b5e5a5fbeed9.tar data-service-9dde93422c7cbef787ecb34f6346b5e5a5fbeed9.tar.gz |
Add powerpc64le-linux as a supported system
This should not be necessary, but currently the database isn't used to find
out the valid system values.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/model-derivation.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model-derivation.scm b/tests/model-derivation.scm index 0e9f97b..d6e77b3 100644 --- a/tests/model-derivation.scm +++ b/tests/model-derivation.scm @@ -12,7 +12,7 @@ (test-equal "valid-systems" '("aarch64-linux" "armhf-linux" "i586-gnu" - "i686-linux" "mips64el-linux" "x86_64-linux") + "i686-linux" "mips64el-linux" "powerpc64le-linux" "x86_64-linux") (valid-systems conn)) (test-equal "count-derivations" |