diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-03-31 10:40:45 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-03-31 22:01:15 +0100 |
commit | bcaa958dcd645599382c3063ea87ad6e878210fc (patch) | |
tree | 8dae6985072f9e48477aabdf9fc81e0c1c84d3f8 | |
parent | 928fd62aed9d1f2b6e7617de8ba0604b415f62ab (diff) | |
download | klee-bcaa958dcd645599382c3063ea87ad6e878210fc.tar.gz |
Fixed some messages, particularly Klee -> KLEE
-rwxr-xr-x | tools/klee-stats/klee-stats | 6 | ||||
-rw-r--r-- | tools/klee/main.cpp | 2 | ||||
-rw-r--r-- | utils/grafana/datasource.yml | 2 | ||||
-rw-r--r-- | utils/grafana/klee_dashboard.json | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index 7bc1fef6..5a855705 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -10,7 +10,7 @@ # # ===----------------------------------------------------------------------===## -"""Output statistics logged by Klee.""" +"""Output statistics logged by KLEE.""" import os import sys @@ -417,7 +417,7 @@ def main(): epilog=epilog, formatter_class=argparse.RawDescriptionHelpFormatter) - parser.add_argument('dir', nargs='+', help='klee output directory') + parser.add_argument('dir', nargs='+', help='KLEE output directory') if tabulate_available: parser.add_argument('--table-format', @@ -473,7 +473,7 @@ def main(): dirs = getKleeOutDirs(args.dir) if len(dirs) == 0: - print('no klee output dir found', file=sys.stderr) + print('No KLEE output directory found', file=sys.stderr) exit(1) if args.grafana: diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 117c27ca..796956dc 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -1259,7 +1259,7 @@ int main(int argc, char **argv, char **envp) { if (Libcxx) { #ifndef SUPPORT_KLEE_LIBCXX - klee_error("Klee was not compiled with libcxx support"); + klee_error("KLEE was not compiled with Libcxx support"); #else SmallString<128> LibcxxBC(Opts.LibraryDir); llvm::sys::path::append(LibcxxBC, KLEE_LIBCXX_BC_NAME); diff --git a/utils/grafana/datasource.yml b/utils/grafana/datasource.yml index e568c326..13a61406 100644 --- a/utils/grafana/datasource.yml +++ b/utils/grafana/datasource.yml @@ -3,7 +3,7 @@ apiVersion: 1 datasources: # <string, required> name of the datasource. Required -- name: Klee Stats +- name: KLEE Stats # <string, required> datasource type. Required type: grafana-simple-json-datasource # <string, required> access mode. proxy or direct (Server or Browser in the UI). Required diff --git a/utils/grafana/klee_dashboard.json b/utils/grafana/klee_dashboard.json index 3b653bab..cbe71b6c 100644 --- a/utils/grafana/klee_dashboard.json +++ b/utils/grafana/klee_dashboard.json @@ -188,7 +188,7 @@ "#B877D9", "#d44a3a" ], - "datasource": "Klee Stats", + "datasource": "KLEE Stats", "format": "locale", "gauge": { "maxValue": 100, |