1// Copyright 2017 syzkaller project authors. All rights reserved. 2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 3 4package main 5 6import ( 7 "testing" 8) 9 10func TestLoadConfig(t *testing.T) { 11 if _, err := loadConfig("testdata/example.cfg"); err != nil { 12 t.Fatalf("failed to load: %v", err) 13 } 14} 15