blob: ae620e4d20987eeefd6ffc77f27dc0c3d673a2e9 [file] [log] [blame]
// Copyright (c) 2017, 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.
// @dart = 2.9
/// @assertion int currentRss
///
/// The current resident set size of memory for the process.
///
/// Note that the meaning of this field is platform dependent. For example, some
/// memory accounted for here may be shared with other processes, or if the same
/// page is mapped into a process's address space, it may be counted twice.
///
/// @description Checks that [currentRss] returns int value.
/// @author ngl@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
main() {
Expect.isTrue(ProcessInfo.currentRss is int);
}