2022-05-21 08:07:25 +08:00
|
|
|
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers"
|
2021-09-16 22:03:54 +08:00
|
|
|
import { setupGcc } from "../gcc"
|
2021-09-17 07:21:11 +08:00
|
|
|
import { getVersion } from "../../default_versions"
|
2022-08-21 06:38:51 +08:00
|
|
|
import { join, addExeExt } from "patha"
|
2022-02-15 15:10:02 +08:00
|
|
|
import execa from "execa"
|
|
|
|
import { chmodSync } from "fs"
|
2021-09-16 22:03:54 +08:00
|
|
|
|
2021-12-07 21:45:29 +08:00
|
|
|
jest.setTimeout(3000000)
|
2021-09-16 22:03:54 +08:00
|
|
|
describe("setup-gcc", () => {
|
2022-05-21 08:07:25 +08:00
|
|
|
let directory: string
|
|
|
|
beforeAll(async () => {
|
2022-05-21 08:52:48 +08:00
|
|
|
directory = await setupTmpDir("gcc")
|
2022-05-21 08:07:25 +08:00
|
|
|
})
|
|
|
|
|
2021-09-16 22:03:54 +08:00
|
|
|
it("should setup gcc", async () => {
|
2022-05-21 08:07:25 +08:00
|
|
|
const version = getVersion("gcc", undefined)
|
|
|
|
const installInfo = await setupGcc(version, directory, process.arch)
|
2021-09-16 22:03:54 +08:00
|
|
|
|
2021-09-17 07:15:25 +08:00
|
|
|
let gpp = "g++"
|
|
|
|
if (process.platform !== "win32") {
|
2021-09-17 07:21:11 +08:00
|
|
|
gpp = `g++-${version}`
|
2021-09-17 07:15:25 +08:00
|
|
|
}
|
|
|
|
await testBin(gpp, ["--version"], installInfo?.binDir)
|
2022-01-30 04:47:02 +08:00
|
|
|
|
|
|
|
expect(process.env.CC?.includes("gcc")).toBeTruthy()
|
|
|
|
expect(process.env.CXX?.includes("g++")).toBeTruthy()
|
2022-02-15 15:10:02 +08:00
|
|
|
|
|
|
|
// test compilation
|
2022-08-21 06:38:51 +08:00
|
|
|
const file = join(__dirname, "main.cpp")
|
|
|
|
const main_exe = join(__dirname, addExeExt("main"))
|
2022-02-15 15:10:02 +08:00
|
|
|
execa.sync("g++", [file, "-o", main_exe], { cwd: __dirname })
|
|
|
|
if (process.platform !== "win32") {
|
|
|
|
chmodSync(main_exe, "755")
|
|
|
|
}
|
|
|
|
execa.sync(main_exe, { cwd: __dirname, stdio: "inherit" })
|
2021-09-16 22:03:54 +08:00
|
|
|
})
|
2022-05-21 08:07:25 +08:00
|
|
|
|
|
|
|
afterAll(async () => {
|
2022-05-21 08:52:48 +08:00
|
|
|
await cleanupTmpDir("gcc")
|
2022-05-21 08:07:25 +08:00
|
|
|
}, 100000)
|
2021-09-16 22:03:54 +08:00
|
|
|
})
|