mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
632f24166d
Part of the `BuildResult` test is commented out because we have caught a roundtrip bug! A future PR will fix the bug and uncomment that test.
18 lines
267 B
C++
18 lines
267 B
C++
#include "build-result.hh"
|
|
|
|
namespace nix {
|
|
|
|
GENERATE_CMP_EXT(
|
|
,
|
|
BuildResult,
|
|
me->status,
|
|
me->errorMsg,
|
|
me->timesBuilt,
|
|
me->isNonDeterministic,
|
|
me->builtOutputs,
|
|
me->startTime,
|
|
me->stopTime,
|
|
me->cpuUser,
|
|
me->cpuSystem);
|
|
|
|
}
|