Minor fixes for output consistency

This commit is contained in:
Marshall Greenblatt 2016-10-27 14:22:56 -04:00
parent 676cb1f07d
commit 29f7953677
2 changed files with 6 additions and 7 deletions

View File

@ -2853,11 +2853,10 @@ V8_TEST(ObjectAccessor, V8TEST_OBJECT_ACCESSOR);
V8_TEST(ObjectAccessorException, V8TEST_OBJECT_ACCESSOR_EXCEPTION);
V8_TEST(ObjectAccessorFail, V8TEST_OBJECT_ACCESSOR_FAIL);
V8_TEST(ObjectAccessorReadOnly, V8TEST_OBJECT_ACCESSOR_READONLY);
V8_TEST(RunObjectInterceptorTest, V8TEST_OBJECT_INTERCEPTOR);
V8_TEST(RunObjectInterceptorFailTest, V8TEST_OBJECT_INTERCEPTOR_FAIL);
V8_TEST(RunObjectInterceptorExceptionTest, V8TEST_OBJECT_INTERCEPTOR_EXCEPTION);
V8_TEST(RunObjectInterceptorAndAccessorTest,
V8TEST_OBJECT_INTERCEPTOR_AND_ACCESSOR);
V8_TEST(ObjectInterceptor, V8TEST_OBJECT_INTERCEPTOR);
V8_TEST(ObjectInterceptorFail, V8TEST_OBJECT_INTERCEPTOR_FAIL);
V8_TEST(ObjectInterceptorException, V8TEST_OBJECT_INTERCEPTOR_EXCEPTION);
V8_TEST(ObjectInterceptorAndAccessor, V8TEST_OBJECT_INTERCEPTOR_AND_ACCESSOR);
V8_TEST(ObjectValue, V8TEST_OBJECT_VALUE);
V8_TEST(ObjectValueReadOnly, V8TEST_OBJECT_VALUE_READONLY);
V8_TEST(ObjectValueEnum, V8TEST_OBJECT_VALUE_ENUM);

View File

@ -56,7 +56,7 @@ def process_line(line):
def process_file(path):
print "Issue #1999: " + path
print "Applying issue #1999 fix to " + path
with open(path) as f:
content = f.read().splitlines()
@ -71,4 +71,4 @@ def process_file(path):
f.write("\n")
def apply(confpath):
process_file(os.path.join(confpath, "obj/cef/libcef.ninja"))
process_file(os.path.join(confpath, "obj", "cef", "libcef.ninja"))