Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing reported issues in Ace #127

Merged
merged 1 commit into from
Jan 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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