]> git.lizzy.rs Git - rust.git/blob - tests/ui-cargo/update-references.sh
Auto merge of #6401 - ebroto:pin_to_a_nightly, r=ebroto
[rust.git] / tests / ui-cargo / update-references.sh
1 #!/bin/bash
2
3 # A script to update the references for particular tests. The idea is
4 # that you do a run, which will generate files in the build directory
5 # containing the (normalized) actual output of the compiler. This
6 # script will then copy that output and replace the "expected output"
7 # files. You can then commit the changes.
8 #
9 # If you find yourself manually editing a foo.stderr file, you're
10 # doing it wrong.
11
12 if [[ "$1" == "--help" || "$1" == "-h" || "$1" == "" || "$2" == "" ]]; then
13     echo "usage: $0 <build-directory> <relative-path-to-rs-files>"
14     echo ""
15     echo "For example:"
16     echo "   $0 ../../../build/x86_64-apple-darwin/test/ui *.rs */*.rs"
17 fi
18
19 MYDIR=$(dirname "$0")
20
21 BUILD_DIR="$1"
22 shift
23
24 while [[ "$1" != "" ]]; do
25     STDERR_NAME="${1/%.rs/.stderr}"
26     STDOUT_NAME="${1/%.rs/.stdout}"
27     shift
28     if [[ -f "$BUILD_DIR"/"$STDOUT_NAME" ]] && \
29            ! (cmp -s -- "$BUILD_DIR"/"$STDOUT_NAME" "$MYDIR"/"$STDOUT_NAME"); then
30         echo updating "$MYDIR"/"$STDOUT_NAME"
31         cp "$BUILD_DIR"/"$STDOUT_NAME" "$MYDIR"/"$STDOUT_NAME"
32         if [[ ! -s "$MYDIR"/"$STDOUT_NAME" ]]; then
33             echo removing "$MYDIR"/"$STDOUT_NAME"
34             rm "$MYDIR"/"$STDOUT_NAME"
35         fi
36     fi
37     if [[ -f "$BUILD_DIR"/"$STDERR_NAME" ]] && \
38            ! (cmp -s -- "$BUILD_DIR"/"$STDERR_NAME" "$MYDIR"/"$STDERR_NAME"); then
39         echo updating "$MYDIR"/"$STDERR_NAME"
40         cp "$BUILD_DIR"/"$STDERR_NAME" "$MYDIR"/"$STDERR_NAME"
41         if [[ ! -s "$MYDIR"/"$STDERR_NAME" ]]; then
42             echo removing "$MYDIR"/"$STDERR_NAME"
43             rm "$MYDIR"/"$STDERR_NAME"
44         fi
45     fi
46 done