From: Daniel Vetter <daniel@ffwll.ch>
To: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 3/3] tests/ZZ_hangman: Test both error_state interfaces
Date: Mon, 1 Jul 2013 18:56:11 +0200 [thread overview]
Message-ID: <20130701165611.GU18285@phenom.ffwll.local> (raw)
In-Reply-To: <1372419341-5858-1-git-send-email-mika.kuoppala@intel.com>
On Fri, Jun 28, 2013 at 02:35:41PM +0300, Mika Kuoppala wrote:
> Test both debugfs and sysfs error_state interfaces.
>
> v2: sysfs error_state not mandatory
>
> Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
Series merged with Chris' s/error_state/error/ bikeshed applied, thanks.
-Daniel
> ---
> tests/ZZ_hangman | 52 ++++++++++++++++++++++++++++++++++++++--------------
> 1 file changed, 38 insertions(+), 14 deletions(-)
>
> diff --git a/tests/ZZ_hangman b/tests/ZZ_hangman
> index 08c5514..4db3823 100755
> --- a/tests/ZZ_hangman
> +++ b/tests/ZZ_hangman
> @@ -18,25 +18,49 @@ if [ ! -f i915_ring_stop ] ; then
> exit 77
> fi
>
> -if cat i915_error_state | grep -v "no error state collected" > /dev/null ; then
> - echo "gpu hang dectected"
> - exit 1
> -fi
> +function check_iface {
> + estate_fname=$1
> + mandatory=$2
>
> -# stop rings
> -echo 0xf > i915_ring_stop
> -echo "rings stopped"
> + echo checking ${estate_fname}
>
> -(cd $oldpath; $SOURCE_DIR/gem_exec_big) > /dev/null
> + if [ ! -f $estate_fname ] ; then
> + if [ $mandatory != 0 ] ; then
> + echo "'${estate_fname}' not found";
> + exit 1;
> + else
> + echo "${estate_fname} not mandatory";
> + return;
> + fi
> + fi
>
> -if cat i915_error_state | grep -v "no error state collected" > /dev/null ; then
> - echo "gpu hang correctly dectected"
> -else
> - echo "gpu hang not dectected"
> + if cat $estate_fname | grep -v "no error state collected" > /dev/null ; then
> + echo "gpu hang detected"
> exit 2
> -fi
> + fi
> +
> + echo 0xf > i915_ring_stop
> + echo "rings stopped"
> +
> + (cd $oldpath; $SOURCE_DIR/gem_exec_big) > /dev/null
> +
> + if cat $estate_fname | grep -v "no error state collected" > /dev/null ; then
> + echo "gpu hang correctly detected"
> + else
> + echo "gpu hang not detected"
> + exit 3
> + fi
>
> # clear error state
> -echo > i915_error_state
> + echo > $estate_fname
> +
> + if cat $estate_fname | grep -v "no error state collected" > /dev/null ; then
> + echo "gpu hang still present"
> + exit 4
> + fi
> +}
> +
> +check_iface $i915_dfs_path/i915_error_state 1
> +check_iface $i915_sfs_path/error_state 0
>
> exit 0
> --
> 1.7.9.5
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
prev parent reply other threads:[~2013-07-01 16:56 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-27 13:54 [PATCH 1/3] tests: rename debugfs base path to be more specific Mika Kuoppala
2013-06-27 13:54 ` [PATCH 2/3] tests: add i915_sfs_path Mika Kuoppala
2013-06-27 13:54 ` [PATCH 3/3] tests/ZZ_hangman: Test both error_state interfaces Mika Kuoppala
2013-06-27 17:23 ` Daniel Vetter
2013-06-28 11:35 ` Mika Kuoppala
2013-07-01 16:56 ` Daniel Vetter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130701165611.GU18285@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=mika.kuoppala@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox