58c84272bc
These libraries will be shared between the dart2js and DDC runtimes. Also renames the `shared` directory to `synced` to avoid confusion. Synced directories are copied to be in sync with the compilers and runtimes. Change-Id: Ic36076938741d7102792f09413666de0033da3a4 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/238300 Reviewed-by: Mayank Patke <fishythefish@google.com> Reviewed-by: Ivan Inozemtsev <iinozemtsev@google.com> Reviewed-by: Stephen Adams <sra@google.com> Commit-Queue: Nicholas Shahan <nshahan@google.com> Reviewed-by: Nate Bosch <nbosch@google.com>
38 lines
1.4 KiB
Dart
38 lines
1.4 KiB
Dart
// 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.
|
|
|
|
/// Test to verify that this package is in-sync with shared runtime libraries.
|
|
import 'dart:io';
|
|
|
|
import 'package:_fe_analyzer_shared/src/util/relativize.dart';
|
|
import 'package:expect/expect.dart';
|
|
|
|
void main(List<String> argv) {
|
|
var packageDir = Platform.script.resolve('../lib/synced/');
|
|
var sdkDir = Platform.script
|
|
.resolve('../../../sdk/lib/_internal/js_shared/lib/synced/');
|
|
var rPackageDir =
|
|
relativizeUri(Directory.current.uri, packageDir, Platform.isWindows);
|
|
var rSdkDir =
|
|
relativizeUri(Directory.current.uri, sdkDir, Platform.isWindows);
|
|
|
|
for (var file in Directory.fromUri(sdkDir).listSync()) {
|
|
if (file is File) {
|
|
var filename = file.uri.pathSegments.last;
|
|
var packageFile = File.fromUri(packageDir.resolve(filename));
|
|
Expect.isTrue(
|
|
packageFile.existsSync(),
|
|
"$filename not in sync. Please update it by running:\n"
|
|
" cp $rSdkDir$filename $rPackageDir$filename");
|
|
var original = file.readAsBytesSync();
|
|
var copy = packageFile.readAsBytesSync();
|
|
Expect.listEquals(
|
|
original,
|
|
copy,
|
|
"$filename not in sync. Please update it by running:\n"
|
|
" cp $rSdkDir$filename $rPackageDir$filename");
|
|
}
|
|
}
|
|
}
|