mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 23:04:40 +01:00
31 lines
555 B
Go
31 lines
555 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")
|
|
}
|
|
|
|
args = []string{"get-bc", "-v", "../data/hello"}
|
|
|
|
exitCode = shared.Extract(args)
|
|
|
|
if exitCode != 0 {
|
|
t.Errorf("Extraction of %v returned %v\n", args, exitCode)
|
|
} else {
|
|
fmt.Println("Extraction OK")
|
|
}
|
|
|
|
}
|