authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-02-21 11:07:56-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-02-21 11:07:56-05:00
logab56d3e18ca7dbc430fdc2ca51fce08804cc3599
treec7e8cf860aa34916305797471962b0858d93f898
parenta391a82e4987728e30bf5c27be5631f9d4db530f
signature Commit is signed but in an unrecognized format.

fix std.Target unit tests


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/target.zig+2-2
......@@ -1262,7 +1262,7 @@ test "Target.parse" {
12621262 {
12631263 const target = (try Target.parse(.{
12641264 .arch_os_abi = "x86_64-linux-gnu",
1265 .cpu = "x86_64-sse-sse2-avx-cx8",
1265 .cpu_features = "x86_64-sse-sse2-avx-cx8",
12661266 })).Cross;
12671267
12681268 std.testing.expect(target.os == .linux);
......@@ -1277,7 +1277,7 @@ test "Target.parse" {
12771277 {
12781278 const target = (try Target.parse(.{
12791279 .arch_os_abi = "arm-linux-musleabihf",
1280 .cpu = "generic+v8a",
1280 .cpu_features = "generic+v8a",
12811281 })).Cross;
12821282
12831283 std.testing.expect(target.os == .linux);