1f08c3bdfSopenharmony_ci#!/bin/bash 2f08c3bdfSopenharmony_ci# 3f08c3bdfSopenharmony_ci# Filter out specified test case results from all results. 4f08c3bdfSopenharmony_ci# 5f08c3bdfSopenharmony_ci# Copyright (C) 2008, Intel Corp. 6f08c3bdfSopenharmony_ci# Author: Huang Ying <ying.huang@intel.com> 7f08c3bdfSopenharmony_ci# 8f08c3bdfSopenharmony_ci# This file is released under the GPLv2. 9f08c3bdfSopenharmony_ci# 10f08c3bdfSopenharmony_ci 11f08c3bdfSopenharmony_citr '\n' '|' | sed -e '1,$s/||/\n/g' | grep "$@" | sed -e '/^$/d' | \ 12f08c3bdfSopenharmony_ci sed -e '1,$s/^|\?\([^|].*[^|]\)|\?$/\1/' | sed -e '1,$i\ ' | tr '|' '\n' 13