blob: 4c4ba2aa585beb2e15584c410dea3516f92a9b0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
run_binary "./pflash" "-h"
if [ "$?" -ne 0 ] ; then
fail_test
fi
strip_version_from_result "pflash"
diff_with_result
pass_test
|