From 6573032fffc201ee69dfe22d0d678eda8f915436 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 19 Jun 2017 17:23:03 +0200 Subject: syz-ci: add continuous integration system --- syz-ci/config_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 syz-ci/config_test.go (limited to 'syz-ci/config_test.go') diff --git a/syz-ci/config_test.go b/syz-ci/config_test.go new file mode 100644 index 000000000..4d33f11df --- /dev/null +++ b/syz-ci/config_test.go @@ -0,0 +1,14 @@ +// Copyright 2017 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package main + +import ( + "testing" +) + +func TestLoadConfig(t *testing.T) { + if _, err := loadConfig("testdata/example.cfg"); err != nil { + t.Fatalf("failed to load: %v", err) + } +} -- cgit mrf-deployment