Skip to content

Commit

Permalink
Fixing reported issues in Ace
Browse files Browse the repository at this point in the history
  • Loading branch information
rohankadekodi committed Jan 21, 2019
1 parent e74a414 commit 2a4f9dd
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

1 comment on commit 2a4f9dd

@vijay03
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add quick comments about what you are changing so that we remember later?

Please sign in to comment.