Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f6c7669 authored by Thiébaud Weksteen's avatar Thiébaud Weksteen
Browse files

rust: add darwin as host arch

Bug: 169739272
Test: m nothing
Change-Id: I3ef2a3dd7e80b9fe47edb6eb04ed9d37e8d58096
parent d2ff0871
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -139,10 +139,11 @@ func TestProjectJsonBindGen(t *testing.T) {
			t.Fatalf("Unexpected type for root_module: %v", crate["root_module"])
		}
		if strings.Contains(rootModule, "libbindings1") && !strings.Contains(rootModule, "android_arm64") {
			t.Errorf("The source for libbindings1 does not contain android_arm64, got %v", rootModule)
			t.Errorf("The source path for libbindings1 does not contain android_arm64, got %v", rootModule)
		}
		if strings.Contains(rootModule, "libbindings2") && !strings.Contains(rootModule, "linux_glibc") {
			t.Errorf("The source for libbindings2 does not contain linux_glibc, got %v", rootModule)
		if strings.Contains(rootModule, "libbindings2") && !strings.Contains(rootModule, android.BuildOs.String()) {
			t.Errorf("The source path for libbindings2 does not contain the BuildOs, got %v; want %v",
				rootModule, android.BuildOs.String())
		}
	}
}