aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArkady Shapkin <arkady.shapkin@gmail.com>2017-08-31 23:05:00 +0300
committerGitHub <noreply@github.com>2017-08-31 23:05:00 +0300
commit8282229d4f9ddc2f47fa0c5be51d3c4c2e7c40f3 (patch)
treeec86197db8911a5440cc8a31e692d09d9f298572
parent5dde668e093151f334e47da8410c83d675f1be81 (diff)
parent92e920730daecd3fd4e19d1ce9fa52a3558c2d57 (diff)
downloadgoogletest-8282229d4f9ddc2f47fa0c5be51d3c4c2e7c40f3.tar.gz
googletest-8282229d4f9ddc2f47fa0c5be51d3c4c2e7c40f3.tar.bz2
googletest-8282229d4f9ddc2f47fa0c5be51d3c4c2e7c40f3.zip
Merge branch 'master' into mingw64-appveyour
-rw-r--r--.gitignore2
-rw-r--r--googletest/.gitignore2
-rw-r--r--googletest/docs/FAQ.md4
-rwxr-xr-xtravis.sh1
4 files changed, 4 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index da68162d..8f89b801 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,5 @@ bazel-genfiles
bazel-googletest
bazel-out
bazel-testlogs
+# python
+*.pyc \ No newline at end of file
diff --git a/googletest/.gitignore b/googletest/.gitignore
deleted file mode 100644
index 4b7be4b9..00000000
--- a/googletest/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-# python
-*.pyc
diff --git a/googletest/docs/FAQ.md b/googletest/docs/FAQ.md
index 36f5f7fb..76c23727 100644
--- a/googletest/docs/FAQ.md
+++ b/googletest/docs/FAQ.md
@@ -1034,7 +1034,7 @@ namespace bar {
TEST(CoolTest, DoSomething) {
SUCCEED();
}
-} // namespace foo
+} // namespace bar
```
However, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name.
@@ -1052,7 +1052,7 @@ class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest
TEST_F(CoolTest, DoSomething) {
SUCCEED();
}
-} // namespace foo
+} // namespace bar
```
## How do I build Google Testing Framework with Xcode 4? ##
diff --git a/travis.sh b/travis.sh
index 1b23a3d4..6e7f06ab 100755
--- a/travis.sh
+++ b/travis.sh
@@ -5,7 +5,6 @@ env | sort
mkdir build || true
cd build
cmake -Dgtest_build_samples=ON \
- -Dgmock_build_samples=ON \
-Dgtest_build_tests=ON \
-Dgmock_build_tests=ON \
-DCMAKE_CXX_FLAGS=$CXX_FLAGS \