#!/bin/sh
set -e
for i in tests/hwloc/xml/*.xml tests/hwloc/xml/*.output
do
  case "$i" in
    */*.v1.xml )
      # This is just a hwloc v1 reference
      continue;;
  esac
  test=tests/hwloc/xml/test-topology.sh /bin/sh ./debian/tests/test-util "$i"
done
