gllvm/tests/entry_test.go
2019-10-26 00:37:23 +00:00

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")
}
}