Sort source and header lists in cmake files (#4487)

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2021-01-16 21:39:18 +01:00
committed by GitHub
parent abaf9637d7
commit 1fe7c3531a
3 changed files with 87 additions and 87 deletions
+39 -39
View File
@@ -25,63 +25,63 @@ endif()
# Unit tests main modules
set(SOURCE_UNIT_TEST_MAIN_MODULES
test-has-property.c
test-api-objecttype.c
test-strings.c
test-exec-stop.c
test-api-functiontype.c
test-external-string.c
test-from-property-descriptor.c
test-dataview.c
test-api-errortype.c
test-arraybuffer.c
test-api-object-property-names.c
test-to-integer.c
test-regression-3588.c
test-number-converter.c
test-api-value-type.c
test-jmem.c
test-promise.c
test-realm.c
test-internal-properties.c
test-abort.c
test-api-promise.c
test-context-data.c
test-backtrace.c
test-objects-foreach.c
test-api-binary-operations-arithmetics.c
test-api-binary-operations-comparisons.c
test-to-length.c
test-api-strings.c
test-proxy.c
test-container.c
test-api-binary-operations-instanceof.c
test-snapshot.c
test-native-callback-nested.c
test-lit-char-helpers.c
test-resource-name.c
test-unicode.c
test-bigint.c
test-api-property.c
test-api-errortype.c
test-api-functiontype.c
test-api-iteratortype.c
test-api.c
test-typedarray.c
test-api-object-property-names.c
test-api-objecttype.c
test-api-promise.c
test-api-property.c
test-api-set-and-clear-error-flag.c
test-api-strings.c
test-api-value-type.c
test-api.c
test-arraybuffer.c
test-backtrace.c
test-bigint.c
test-container.c
test-context-data.c
test-dataview.c
test-date-helpers.c
test-exec-stop.c
test-external-string.c
test-from-property-descriptor.c
test-has-property.c
test-internal-properties.c
test-jmem.c
test-json.c
test-native-instanceof.c
test-lit-char-helpers.c
test-literal-storage.c
test-mem-stats.c
test-native-callback-nested.c
test-native-instanceof.c
test-newtarget.c
test-number-converter.c
test-number-to-int32.c
test-number-to-string.c
test-string-to-number.c
test-objects-foreach.c
test-poolman.c
test-promise.c
test-proxy.c
test-realm.c
test-regexp-dotall-unicode.c
test-date-helpers.c
test-regexp.c
test-regression-3588.c
test-resource-name.c
test-snapshot.c
test-string-to-number.c
test-stringbuilder.c
test-strings.c
test-symbol.c
test-to-integer.c
test-to-length.c
test-to-property-descriptor.c
test-typedarray.c
test-unicode.c
)
# jerry_heap_stats_t.size == 0 if system allocator is used.
+5 -5
View File
@@ -20,17 +20,17 @@ set(INCLUDE_UNIT_EXT ${CMAKE_CURRENT_SOURCE_DIR})
# Unit tests main modules
set(SOURCE_UNIT_TEST_EXT_MODULES
test-ext-arg.c
test-ext-handle-scope-handle-prelist.c
test-ext-module-empty.c
test-ext-autorelease.c
test-ext-handle-scope-nested.c
test-ext-handle-scope.c
test-ext-handle-scope-escape.c
test-ext-method-register.c
test-ext-handle-scope-handle-prelist-escape.c
test-ext-handle-scope-handle-prelist.c
test-ext-handle-scope-nested.c
test-ext-handle-scope-remove.c
test-ext-handle-scope-root.c
test-ext-handle-scope.c
test-ext-method-register.c
test-ext-module-canonical.c
test-ext-module-empty.c
)
# Disable test-ext-autorelease.c if compiler is MSVC, because MSVC doesn't support cleanup attribute.