From d7370fb53031fa6a54fa3e848258044fa736d789 Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Wed, 21 May 2014 10:52:45 -0700 Subject: [PATCH] fix test_all path in docs --- docs/development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development.md b/docs/development.md index b937003..26e4332 100644 --- a/docs/development.md +++ b/docs/development.md @@ -39,14 +39,14 @@ We'd appreciate your contribution to the documentation effort! The `googletest` framework we use provides many additional options, which you can access by running the test binaries directly. One of the more useful options is `--gtest_filter`, which allows you to filter tests by name: # run all tests with CPU in the name - build/src/caffe/test/test_all.testbin --gtest_filter='*CPU*' + build/test/test_all.testbin --gtest_filter='*CPU*' # run all tests without GPU in the name (note the leading minus sign) - build/src/caffe/test/test_all.testbin --gtest_filter=-'*GPU*' + build/test/test_all.testbin --gtest_filter=-'*GPU*' To get a list of all options `googletest` provides, simply pass the `--help` flag: - build/src/caffe/test/test_all.testbin --help + build/test/test_all.testbin --help **Style** -- 2.7.4