From bb3a3a61fe7b971ad8ef326ec7e4d5903e6860ee Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Mon, 27 Jan 2014 15:15:43 -0800 Subject: Functional tests for C library MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While gearing up to make an addition to the C library, I became concerned at the lack of test infrastructure for the project. The build system now integrates Check , a lightweight testing framework for C, and there are a few tests to ensure no serious regressions occur. You can run the tests with “make check”. --- test/trace_invalid.h | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 test/trace_invalid.h (limited to 'test/trace_invalid.h') diff --git a/test/trace_invalid.h b/test/trace_invalid.h new file mode 100644 index 0000000..73881e1 --- /dev/null +++ b/test/trace_invalid.h @@ -0,0 +1,55 @@ +/* trace_invalid.h -- fixture to create an invalid trace + * Copyright (C) 2014 Galois, Inc. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, either version 3 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + * + * To contact Galois, complete the Web form at + * or write to Galois, Inc., 421 Southwest + * 6th Avenue, Suite 300, Portland, Oregon, 97204-1622. + * + * + * This fixture creates an invalid OTF trace in the currently-active temporary + * directory. It does not remove it, as it will be removed when the temporary + * directory is cleaned. + * + * Runtime dependency: tmpdir */ + +#ifndef PPAML_TRACER_TEST_TRACE_INVALID_H +#define PPAML_TRACER_TEST_TRACE_INVALID_H + +#include "tmpdir.h" + +#define HAVE_FIXTURE_trace_invalid HAVE_FIXTURE_tmpdir + +#if HAVE_FIXTURE_trace_invalid + void trace_invalid_make(); + + /* Despite its name, this function does not actually clean anything. + * It's provided to make it easier to interface with Check. */ + void trace_invalid_clean(); + + /* Returns the path to the trace. If no trace is active, returns + * NULL. */ + const char *trace_invalid_path(); + + // Registers the fixture. + inline void trace_invalid_add_checked(TCase *const tc) { + tcase_add_checked_fixture( + tc, + trace_invalid_make, + trace_invalid_clean); + } +#endif + +#endif -- cgit v1.2.3