mirror of https://github.com/aminya/setup-cpp
test: fix the gcovr version tests
This commit is contained in:
parent
9303e93d38
commit
b10559687a
|
@ -55,18 +55,18 @@ describe("getVersion", () => {
|
||||||
it("gcovr", () => {
|
it("gcovr", () => {
|
||||||
expect(getVersion("gcovr", "5.0")).toBe("5.0")
|
expect(getVersion("gcovr", "5.0")).toBe("5.0")
|
||||||
if (process.platform === "linux") {
|
if (process.platform === "linux") {
|
||||||
expect(getVersion("gcovr", "true", [22, 4])).toBe("5.2")
|
expect(getVersion("gcovr", "true", [22, 4])).toBe(DefaultLinuxVersion.gcovr![22])
|
||||||
expect(getVersion("gcovr", "true", [20, 4])).toBe("5.2")
|
expect(getVersion("gcovr", "true", [20, 4])).toBe(DefaultLinuxVersion.gcovr![20])
|
||||||
expect(getVersion("gcovr", "true", [18, 4])).toBe("5.0")
|
expect(getVersion("gcovr", "true", [18, 4])).toBe(DefaultLinuxVersion.gcovr![18])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
it("llvm", () => {
|
it("llvm", () => {
|
||||||
expect(getVersion("llvm", "13.0.0")).toBe("13.0.0")
|
expect(getVersion("llvm", "13.0.0")).toBe("13.0.0")
|
||||||
if (process.platform === "linux") {
|
if (process.platform === "linux") {
|
||||||
expect(getVersion("llvm", "true", [20, 4])).toBe(DefaultLinuxVersion["llvm"]![20])
|
expect(getVersion("llvm", "true", [20, 4])).toBe(DefaultLinuxVersion.llvm![20])
|
||||||
expect(getVersion("llvm", "true", [18, 4])).toBe(DefaultLinuxVersion["llvm"]![18])
|
expect(getVersion("llvm", "true", [18, 4])).toBe(DefaultLinuxVersion.llvm![18])
|
||||||
expect(getVersion("llvm", "true", [16, 4])).toBe(DefaultLinuxVersion["llvm"]![16])
|
expect(getVersion("llvm", "true", [16, 4])).toBe(DefaultLinuxVersion.llvm![16])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue