c7e08bd6d0
Example output with -v -x: ... Finished 127 tests, 0 failures, 0 skipped. Ran 73094673 Internal tests. BUG= R=caryclark@google.com Author: mtklein@google.com Review URL: https://chromiumcodereview.appspot.com/13983011 git-svn-id: http://skia.googlecode.com/svn/trunk@8821 2bbb7eff-a529-9590-31e7-b0007b416f81
127 lines
3.5 KiB
C++
127 lines
3.5 KiB
C++
|
|
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef skiatest_Test_DEFINED
|
|
#define skiatest_Test_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "SkString.h"
|
|
#include "SkTRegistry.h"
|
|
#include "SkThread.h"
|
|
#include "SkTypes.h"
|
|
|
|
class GrContextFactory;
|
|
|
|
namespace skiatest {
|
|
|
|
class Test;
|
|
|
|
class Reporter : public SkRefCnt {
|
|
public:
|
|
SK_DECLARE_INST_COUNT(Reporter)
|
|
Reporter();
|
|
|
|
enum Result {
|
|
kPassed, // must begin with 0
|
|
kFailed,
|
|
/////
|
|
kLastResult = kFailed
|
|
};
|
|
|
|
int countTests() const { return fTestCount; }
|
|
|
|
void startTest(Test*);
|
|
void report(const char testDesc[], Result);
|
|
void endTest(Test*);
|
|
|
|
virtual bool allowExtendedTest() const { return false; }
|
|
virtual bool allowThreaded() const { return false; }
|
|
virtual void bumpTestCount() { sk_atomic_inc(&fTestCount); }
|
|
|
|
// helpers for tests
|
|
void reportFailed(const char desc[]) {
|
|
this->report(desc, kFailed);
|
|
}
|
|
void reportFailed(const SkString& desc) {
|
|
this->report(desc.c_str(), kFailed);
|
|
}
|
|
|
|
|
|
protected:
|
|
virtual void onStart(Test*) {}
|
|
virtual void onReport(const char desc[], Result) {}
|
|
virtual void onEnd(Test*) {}
|
|
|
|
private:
|
|
int32_t fTestCount;
|
|
|
|
typedef SkRefCnt INHERITED;
|
|
};
|
|
|
|
class Test {
|
|
public:
|
|
Test();
|
|
virtual ~Test();
|
|
|
|
Reporter* getReporter() const { return fReporter; }
|
|
void setReporter(Reporter*);
|
|
|
|
const char* getName();
|
|
void run();
|
|
bool passed() const { return fPassed; }
|
|
SkMSec elapsedMs() const { return fElapsed; }
|
|
|
|
static const SkString& GetTmpDir();
|
|
|
|
static const SkString& GetResourcePath();
|
|
|
|
virtual bool isThreadsafe() const { return true; }
|
|
|
|
protected:
|
|
virtual void onGetName(SkString*) = 0;
|
|
virtual void onRun(Reporter*) = 0;
|
|
|
|
private:
|
|
Reporter* fReporter;
|
|
SkString fName;
|
|
bool fPassed;
|
|
SkMSec fElapsed;
|
|
};
|
|
|
|
class GpuTest : public Test{
|
|
public:
|
|
GpuTest() : Test() {}
|
|
static GrContextFactory* GetGrContextFactory();
|
|
static void DestroyContexts();
|
|
virtual bool isThreadsafe() const { return false; }
|
|
private:
|
|
};
|
|
|
|
typedef SkTRegistry<Test*, void*> TestRegistry;
|
|
}
|
|
|
|
#define REPORTER_ASSERT(r, cond) \
|
|
do { \
|
|
if (!(cond)) { \
|
|
SkString desc; \
|
|
desc.printf("%s:%d: %s", __FILE__, __LINE__, #cond); \
|
|
r->reportFailed(desc); \
|
|
} \
|
|
} while(0)
|
|
|
|
#define REPORTER_ASSERT_MESSAGE(r, cond, message) \
|
|
do { \
|
|
if (!(cond)) { \
|
|
SkString desc; \
|
|
desc.printf("%s %s:%d: %s", message, __FILE__, __LINE__, #cond); \
|
|
r->reportFailed(desc); \
|
|
} \
|
|
} while(0)
|
|
|
|
|
|
#endif
|