You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to run the misc tests to compare two similar systems. However, the C test seems to be broken.
First of all, some includes are missing: unistd, stdlib, fcntl and time
But moreover, the calls for timing are just written as time() with no parameters, which of course fails with the function from time.h...
I suppose it is meant to record the time once in now and once in then to get the comparison, but there is no reference to them from the timer. I'll just assume that for now.
Am I missing something or is this broken?
The text was updated successfully, but these errors were encountered:
I wanted to run the misc tests to compare two similar systems. However, the C test seems to be broken.
First of all, some includes are missing: unistd, stdlib, fcntl and time
But moreover, the calls for timing are just written as
time()
with no parameters, which of course fails with the function from time.h...I suppose it is meant to record the time once in
now
and once inthen
to get the comparison, but there is no reference to them from the timer. I'll just assume that for now.Am I missing something or is this broken?
The text was updated successfully, but these errors were encountered: