#!/bin/sh # PCP QA Test No. 729 # Exercise fixes for a few python API segfaults # # Copyright (c) 2014 Red Hat. # seq=`basename $0` echo "QA output created by $seq" # get standard environment, filters and checks . ./common.product . ./common.filter . ./common.check status=1 # failure is the default! $sudo rm -rf $tmp.* $seq.full trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15 cat > $tmp.units < $tmp.parse << EOF import pcp.pmapi context = pcp.pmapi.pmContext(target='local:') try: print(context.pmParseInterval('')) except pcp.pmapi.pmErr, error: print 'Completed safely' EOF # real QA test starts here echo Exercising units string python $tmp.units echo Exercising interval parsing python $tmp.parse # success, all done status=0 exit