blob: 8f96ac1320cb45aa60ba5ae34a248f69573eca85 [file] [log] [blame]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion The finalizer can be attached multiple times to the same object
/// with different, or the same, finalization token.
///
/// @description Checks that finalizer can be attached to the same object with
/// the same finalization token several times.
/// @author iarkh@unipro.ru
import '../../gc_utils_lib.dart';
import '../../../../Utils/expect.dart';
class Nonce {
final int value;
Nonce(this.value);
}
final finalizerTokens = <Nonce>{};
final Finalizer finalizer = Finalizer((token) {
finalizerTokens.add(token);
});
@pragma('vm:never-inline')
void test(Nonce token1, Nonce token2, Nonce token3) {
Object value = Object();
finalizer.attach(value, "Finalization token", detach: token1);
finalizer.attach(value, "Finalization token", detach: token2);
finalizer.attach(value, "Finalization token", detach: token3);
}
main() async {
Nonce token1 = Nonce(1);
Nonce token2 = Nonce(2);
Nonce token3 = Nonce(3);
test(token1, token2, token3);
await triggerGcWithDelay();
Expect.setEquals({token1, token2, token3}, finalizerTokens);
}