Skip to content

Commit 6cfcfc9

Browse files
authored
Merge pull request #34 from hartbit/patch-1
Fix error message for missing llvm-bin-dir
2 parents b793d67 + f199384 commit 6cfcfc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lit.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ lit_config.note("testing package: %r" % (package_path,))
137137
# used when testing.
138138
llvm_bin_dir = lit_config.params.get("llvm-bin-dir")
139139
if llvm_bin_dir is None:
140-
lit_config.fatal("'--param llvm_bin_dir=PATH' is required")
140+
lit_config.fatal("'--param llvm-bin-dir=PATH' is required")
141141
filecheck_path = os.path.join(llvm_bin_dir, 'FileCheck')
142142
readelf_path = os.path.join(llvm_bin_dir, 'llvm-readelf')
143143
lit_config.note("testing using 'FileCheck': %r" % (filecheck_path,))

0 commit comments

Comments
 (0)