Skip to content

Commit

Permalink
Merge pull request #127 from utsaslab/jayashree_dev
Browse files Browse the repository at this point in the history
Fixing reported issues in Ace
  • Loading branch information
jayashreemohan29 authored Jan 22, 2019
2 parents ab21ec1 + 2a4f9dd commit aa80c0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ace/ace.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
# We currently support : creat, mkdir, falloc, write, dwrite, link, unlink, remove, rename, fsetxattr, removexattr, truncate, mmapwrite, symlink, fsync, fdatasync, sync
OperationSet = ['creat', 'mkdir', 'falloc', 'write', 'dwrite','mmapwrite', 'link', 'unlink', 'remove', 'rename', 'fsetxattr', 'removexattr', 'truncate', 'fdatasync']


#The sequences we want to reach to, to reproduce known bugs.
expected_sequence = []
expected_sync_sequence = []
Expand Down Expand Up @@ -86,6 +85,8 @@ def SiblingOf(file):
return 'B'
elif file == 'B':
return 'A'
elif file == 'AC' :
return 'AC'
elif file == 'test':
return 'test'

Expand Down
2 changes: 1 addition & 1 deletion copy_diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ then
fi
rm build/diff*
else
if [ -e build/diff* ]
if [ -n "$(ls build | grep diff)" ]
then
rm build/diff*
echo -e "${green}${bold} : Passed test${reset}"
Expand Down

0 comments on commit aa80c0f

Please sign in to comment.