aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-06-06 10:03:16 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-06-06 10:03:16 +0000
commit7e79de354f175de93fd017b81133f43a9e677bcf (patch)
tree9ca28281dbcbaaa96002adbcc070b9caa40f98cf /searchlib
parent77e38e9b883580382e555bdba3c553883bc3f72b (diff)
Rename loadattribute to vespa-attribute-inspect.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/CMakeLists.txt2
-rw-r--r--searchlib/src/apps/loadattribute/.gitignore3
-rw-r--r--searchlib/src/apps/vespa-attribute-inspect/.gitignore3
-rw-r--r--searchlib/src/apps/vespa-attribute-inspect/CMakeLists.txt (renamed from searchlib/src/apps/loadattribute/CMakeLists.txt)6
-rw-r--r--searchlib/src/apps/vespa-attribute-inspect/loadattribute.rb (renamed from searchlib/src/apps/loadattribute/loadattribute.rb)0
-rw-r--r--searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp (renamed from searchlib/src/apps/loadattribute/loadattribute.cpp)2
6 files changed, 8 insertions, 8 deletions
diff --git a/searchlib/CMakeLists.txt b/searchlib/CMakeLists.txt
index c15ed681d8f..0a113fc0a9e 100644
--- a/searchlib/CMakeLists.txt
+++ b/searchlib/CMakeLists.txt
@@ -60,9 +60,9 @@ vespa_define_module(
src/apps/docstore
src/apps/expgolomb
src/apps/fileheaderinspect
- src/apps/loadattribute
src/apps/tests
src/apps/uniform
+ src/apps/vespa-attribute-inspect
src/apps/vespa-index-inspect
src/apps/vespa-ranking-expression-analyzer
diff --git a/searchlib/src/apps/loadattribute/.gitignore b/searchlib/src/apps/loadattribute/.gitignore
deleted file mode 100644
index 4f008fbf84e..00000000000
--- a/searchlib/src/apps/loadattribute/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-.depend
-Makefile
-loadattribute
diff --git a/searchlib/src/apps/vespa-attribute-inspect/.gitignore b/searchlib/src/apps/vespa-attribute-inspect/.gitignore
new file mode 100644
index 00000000000..62bcd8ab443
--- /dev/null
+++ b/searchlib/src/apps/vespa-attribute-inspect/.gitignore
@@ -0,0 +1,3 @@
+.depend
+Makefile
+vespa-attribute-inspect
diff --git a/searchlib/src/apps/loadattribute/CMakeLists.txt b/searchlib/src/apps/vespa-attribute-inspect/CMakeLists.txt
index 6712519e59a..4d170b9f325 100644
--- a/searchlib/src/apps/loadattribute/CMakeLists.txt
+++ b/searchlib/src/apps/vespa-attribute-inspect/CMakeLists.txt
@@ -1,8 +1,8 @@
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(searchlib_loadattribute_app
+vespa_add_executable(searchlib_vespa-attribute-inspect_app
SOURCES
- loadattribute.cpp
- OUTPUT_NAME loadattribute
+ vespa-attribute-inspect.cpp
+ OUTPUT_NAME vespa-attribute-inspect
INSTALL bin
DEPENDS
searchlib
diff --git a/searchlib/src/apps/loadattribute/loadattribute.rb b/searchlib/src/apps/vespa-attribute-inspect/loadattribute.rb
index d1fb5a5632c..d1fb5a5632c 100644
--- a/searchlib/src/apps/loadattribute/loadattribute.rb
+++ b/searchlib/src/apps/vespa-attribute-inspect/loadattribute.rb
diff --git a/searchlib/src/apps/loadattribute/loadattribute.cpp b/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp
index e82ab3ac645..189074aa5d3 100644
--- a/searchlib/src/apps/loadattribute/loadattribute.cpp
+++ b/searchlib/src/apps/vespa-attribute-inspect/vespa-attribute-inspect.cpp
@@ -98,7 +98,7 @@ LoadAttribute::printContent(const AttributePtr & ptr, std::ostream & os)
void
LoadAttribute::usage()
{
- std::cout << "usage: loadattribute [-p (print content to <attribute>.out)]" << std::endl;
+ std::cout << "usage: vespa-attribute-inspect [-p (print content to <attribute>.out)]" << std::endl;
std::cout << " [-a (apply a single update)]" << std::endl;
std::cout << " [-s (save attribute to <attribute>.save.dat)]" << std::endl;
std::cout << " <attribute>" << std::endl;