mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 02:05:01 +00:00
Just reporting that the parent process is "/bin/bash" doesn't help much. Let's also report the cmdline args given to the parent and the cwd. This will help us identify which shell script is calling futility with the wrong args. BUG=chromium:231547 BRANCH=ToT TEST=make runtests Signed-off-by: Bill Richardson <wfrichar@chromium.org> Change-Id: I800995ff269ab8d8c56cad8827d8de48a53cd150 Reviewed-on: https://chromium-review.googlesource.com/216715
45 lines
1.1 KiB
Bash
Executable File
45 lines
1.1 KiB
Bash
Executable File
#!/bin/bash -eux
|
|
# Copyright 2014 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
me=${0##*/}
|
|
TMP="$me.tmp"
|
|
|
|
# Work in scratch directory
|
|
cd "$OUTDIR"
|
|
|
|
# No args returns nonzero exit code
|
|
"$FUTILITY" && false
|
|
|
|
# It's weird but okay if the command is a full path.
|
|
"$FUTILITY" /fake/path/to/help > "$TMP"
|
|
grep Usage "$TMP"
|
|
|
|
# Make sure logging does something.
|
|
LOG="/tmp/futility.log"
|
|
[ -f ${LOG} ] && mv ${LOG} ${LOG}.backup
|
|
touch ${LOG}
|
|
"$FUTILITY" help
|
|
grep "$FUTILITY" ${LOG}
|
|
rm -f ${LOG}
|
|
[ -f ${LOG}.backup ] && mv ${LOG}.backup ${LOG}
|
|
|
|
# Make sure deprecated functions fail via symlink
|
|
DEPRECATED="dev_sign_file"
|
|
|
|
for i in $DEPRECATED; do
|
|
ln -sf "$FUTILITY" $i
|
|
if ./$i 2>${TMP}.outmsg ; then false; fi
|
|
grep deprecated ${TMP}.outmsg
|
|
# They may still fail when invoked through futility
|
|
# but with a different error message.
|
|
"$FUTILITY" $i 1>${TMP}.outmsg2 2>&1 || true
|
|
if grep deprecated ${TMP}.outmsg2; then false; fi
|
|
rm -f $i
|
|
done
|
|
|
|
# cleanup
|
|
rm -f ${TMP}*
|
|
exit 0
|