mirror of
https://github.com/tc39/test262.git
synced 2025-07-13 00:54:39 +02:00
sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
18 lines
624 B
Bash
Executable File
18 lines
624 B
Bash
Executable File
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# usage: test/test262/prune-local-tests.sh
|
|
# This script removes redundant tests present in the local-tests directory
|
|
# when they are identical to upstreamed tests. It should be run as part of
|
|
# the test262 roll process.
|
|
|
|
find test/test262/local-tests -type f | while read localpath; do
|
|
datapath=${localpath/local-tests/data}
|
|
if [ -e $datapath ] ; then
|
|
if diff $localpath $datapath >/dev/null ; then
|
|
git rm $localpath || exit 1
|
|
fi
|
|
fi
|
|
done
|