Displaying 2 results from an estimated 2 matches for "steenkamp".
2017 Aug 03
2
Dependence analysis - missing loop-carried dependencies?
Hi,
I'm trying to do some (loop-carried) dependence analysis using LLVM, but
I'm confused by the results I'm getting. For example, consider this simple
C program:
int main(){
for (int i = 0; i < 10; ++i) {
}
return 0;
}
I would expect that the loop comparison depends on the loop initialisation
and the loop update, however I only see a dependence to the loop
initialisation.
2006 Apr 21
2
destory Test Case Messes up all tests
...dating of a user
def test_update
assert_equal @grant_speelman.firstname, @first_user.firstname
assert_equal @grant_speelman.surname, @first_user.surname
assert_equal @grant_speelman.email, @first_user.email
@first_user.firstname = "Gavin"
@first_user.surname = "Steenkamp"
@first_user.email = "test@glasshouse.co.za"
assert @first_user.save, @first_user.errors.full_messages.join("; ")
@first_user.reload
assert_equal "Gavin", @first_user.firstname
assert_equal "Steenkamp", @first_user.surname
asser...