#!/usr/bin/python
# -*- coding: utf-8 -*-

# --------------------------------------------------
# File Name: checkAll.sh
# Location: 
# Purpose:
# Creation Date: 25-05-2017
# Last Modified: Thu, May 25, 2017 10:52:27 AM
# Author(s): Mike Stout 
# Copyright 2017 The Author(s) All Rights Reserved
# Credits: 
# --------------------------------------------------

source ~/.bashrc

pth="../GABRIEL'S-SET/Latest/"


SAVEIFS=$IFS

IFS=$(echo -en "\n\b")

for f in `ls $pth/*.xml`
do 
	echo $f
	py test_xml.py $f

done

IFS=$SAVEIFS