Files
lattigo/examples/he/hefloat/bootstrapping/basic/main_test.go
Jean-Philippe Bossuat 0e59fa48dd refactored the library
2023-11-04 02:24:29 +01:00

17 lines
238 B
Go

package main
import (
"os"
"testing"
)
func TestMain(t *testing.T) {
if testing.Short() {
t.Skip("skipped in -short mode")
}
oldArgs := os.Args
defer func() { os.Args = oldArgs }()
os.Args = append(os.Args, "-short")
main()
}