diff --git a/tests/runtime/common/gc/CMakeLists.txt b/tests/runtime/common/gc/CMakeLists.txt index 608b999b5bb979d98b7c80d5f3666501956671ad..835be59e75e67bdc718258bec9fc72eee075cf13 100644 --- a/tests/runtime/common/gc/CMakeLists.txt +++ b/tests/runtime/common/gc/CMakeLists.txt @@ -59,3 +59,4 @@ panda_add_ecma_gc_test(FILE concurrent.js OPTIONS "--gc-type=g1-gc" "--gc-trigge panda_add_ecma_gc_test(FILE hclass_changing_during_concurrent.js OPTIONS "--gc-type=g1-gc" "--gc-trigger-type=debug-never" "--heap-verifier=fail_on_verification:post") panda_add_ecma_gc_test(FILE pinObject.js OPTIONS "--gc-type=g1-gc" "--gc-trigger-type=debug-never") panda_add_ecma_gc_test(FILE copylexenvDynTest.js OPTIONS "--gc-type=g1-gc" "--gc-trigger-type=debug-never" "--gc-use-nth-alloc-trigger=true" "--heap-verifier=fail_on_verification:pre:into:post") +panda_add_ecma_gc_test(FILE hclass_collected_before_object.js OPTIONS "--gc-type=g1-gc" "--gc-trigger-type=debug-never" "--g1-track-freed-objects=true") diff --git a/tests/runtime/common/gc/hclass_collected_before_object.js b/tests/runtime/common/gc/hclass_collected_before_object.js new file mode 100644 index 0000000000000000000000000000000000000000..9e55c20a7f7033a99c2dc2a9bff00d6952e58edd --- /dev/null +++ b/tests/runtime/common/gc/hclass_collected_before_object.js @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/** + * Test that object's hclass collection during GC will not not interfere + * with next object collection during full GC + */ + +function objectCreateAndMove() { + // create object with setter and getter which more likely to make test fail + let fObject = { + get name() { + return this.name; + }, + set name(input) { + this.name = input; + } + }; + // start GC to move object to tenured space + startGC("young"); +} +objectCreateAndMove(); +// initiate object hclass collection with threshold GC +let gc = startGC("threshold"); +waitForFinishGC(gc); +// initiate object itself collection with full GC +gc = startGC("full"); +waitForFinishGC(gc);