mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 21:14:48 +01:00
20 lines
343 B
Go
20 lines
343 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/SRI-CSL/gllvm/shared"
|
|
"testing"
|
|
)
|
|
|
|
func Test_basic(t *testing.T) {
|
|
args := []string{"../data/helloworld.c", "-o", "../data/hello"}
|
|
|
|
exitCode := shared.Compile(args, "clang")
|
|
|
|
if exitCode != 0 {
|
|
t.Errorf("Compile of %v returned %v\n", args, exitCode)
|
|
} else {
|
|
fmt.Println("Compiled OK")
|
|
}
|
|
}
|