blob: f399c8f440f5faca0b6e5a5da40983ff028e0258 [file] [log] [blame] [edit]
// Copyright (c) 2026, 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.
import 'dart:async';
import 'dart:io';
import 'package:dart_data_home/src/pid_files.dart';
Future<void> main(List<String> args) async {
if (args.length < 2) {
print('Usage: test_script.dart <package_name> <pid_file_content>');
exit(1);
}
if (!createPidFile(args[0], args[1])) {
throw StateError('Failed to create pid file');
}
print('OK:$pid');
while (true) {
await Future<void>.delayed(const Duration(seconds: 1));
print('.');
}
}