diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-09-24 01:14:07 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-09-24 01:14:07 +0000 |
commit | a75d6bf3a85e792e424e19615d919784d8e5ab02 (patch) | |
tree | 3e886c6042c9291cbc27e92a3b12fe5313bd3a83 /llvm/unittests/Support | |
parent | d9120d35750e94c3bf5209fb04fa1bcd918426bb (diff) | |
download | bcm5719-llvm-a75d6bf3a85e792e424e19615d919784d8e5ab02.tar.gz bcm5719-llvm-a75d6bf3a85e792e424e19615d919784d8e5ab02.zip |
Roll back r82348, which introduced an infinite loop in ParseCStringVector() that
a trivial unittest would have caught. This revision also adds the trivial
unittest.
llvm-svn: 82675
Diffstat (limited to 'llvm/unittests/Support')
-rw-r--r-- | llvm/unittests/Support/CommandLineTest.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/llvm/unittests/Support/CommandLineTest.cpp b/llvm/unittests/Support/CommandLineTest.cpp new file mode 100644 index 00000000000..70d6950f8b0 --- /dev/null +++ b/llvm/unittests/Support/CommandLineTest.cpp @@ -0,0 +1,48 @@ +//===- llvm/unittest/Support/CommandLineTest.cpp - CommandLine tests ------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/Support/CommandLine.h" + +#include "gtest/gtest.h" + +#include <string> +#include <stdlib.h> + +using namespace llvm; + +namespace { + +class TempEnvVar { + public: + TempEnvVar(const char *name, const char *value) + : name(name) { + const char *old_value = getenv(name); + EXPECT_EQ(NULL, old_value) << old_value; + setenv(name, value, true); + } + + ~TempEnvVar() { + unsetenv(name); + } + + private: + const char *const name; +}; + +const char test_env_var[] = "LLVM_TEST_COMMAND_LINE_FLAGS"; + +cl::opt<std::string> EnvironmentTestOption("env-test-opt"); +TEST(CommandLineTest, ParseEnvironment) { + TempEnvVar TEV(test_env_var, "-env-test-opt=hello"); + EXPECT_EQ("", EnvironmentTestOption); + cl::ParseEnvironmentOptions("CommandLineTest", test_env_var); + EXPECT_EQ("hello", EnvironmentTestOption); +} + +} // anonymous namespace |