blob: 9869138d4b6b4f092d8df4e05bf4716ce62faa41 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef __TESTS_SCRIPT_HPP__
#define __TESTS_SCRIPT_HPP__
#include <gtest/gtest.h>
namespace mesos {
namespace internal {
namespace tests {
// Helper used by TEST_SCRIPT to execute the script.
void execute(const std::string& script);
} // namespace tests {
} // namespace internal {
} // namespace mesos {
// Runs the given script (relative to src/tests). We execute this
// script in temporary directory and pipe its output to '/dev/null'
// unless the verbose option is specified. The "test" passes if the
// script returns 0.
#define TEST_SCRIPT(test_case_name, test_name, script) \
TEST(test_case_name, test_name) { \
mesos::internal::tests::execute(script); \
}
#endif // __TESTS_SCRIPT_HPP__