diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-selftest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest index c3215ea659..deaa4324cc 100755 --- a/scripts/oe-selftest +++ b/scripts/oe-selftest | |||
@@ -468,6 +468,9 @@ def main(): | |||
468 | sys.path.extend(layer_libdirs) | 468 | sys.path.extend(layer_libdirs) |
469 | imp.reload(oeqa.selftest) | 469 | imp.reload(oeqa.selftest) |
470 | 470 | ||
471 | # act like bitbake and enforce en_US.UTF-8 locale | ||
472 | os.environ["LC_ALL"] = "en_US.UTF-8" | ||
473 | |||
471 | if args.run_tests_by and len(args.run_tests_by) >= 2: | 474 | if args.run_tests_by and len(args.run_tests_by) >= 2: |
472 | valid_options = ['name', 'class', 'module', 'id', 'tag'] | 475 | valid_options = ['name', 'class', 'module', 'id', 'tag'] |
473 | if args.run_tests_by[0] not in valid_options: | 476 | if args.run_tests_by[0] not in valid_options: |