From b17005eabbdfbb85fe8f1576fb1b8c02013579ef Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 10 Jan 2018 19:56:18 -0500 Subject: [PATCH] fix tests being run for aarch64 and linuxon linux --- ofborg/src/commentparser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofborg/src/commentparser.rs b/ofborg/src/commentparser.rs index 526392c..383e6c6 100644 --- a/ofborg/src/commentparser.rs +++ b/ofborg/src/commentparser.rs @@ -46,7 +46,7 @@ pub fn parse_line(text: &str) -> Option> { Instruction::Build(Subset::NixOS, right .into_iter() - .map(|attr| format!("tests.{}", attr)) + .map(|attr| format!("tests.{}.x86_64-linux", attr)) .collect() ) );