You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
774 B
30 lines
774 B
/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Shared code for tests.
|
|
*/
|
|
|
|
#include "sysincludes.h"
|
|
|
|
#include "tlcl.h"
|
|
#include "tlcl_tests.h"
|
|
|
|
const char* resilient_startup = NULL;
|
|
|
|
uint32_t TlclStartupIfNeeded(void) {
|
|
static char* null_getenv = "some string"; /* just a unique address */
|
|
uint32_t result = TlclStartup();
|
|
if (resilient_startup == NULL) {
|
|
resilient_startup = getenv("TLCL_RESILIENT_STARTUP");
|
|
if (resilient_startup == NULL) {
|
|
resilient_startup = null_getenv;
|
|
}
|
|
}
|
|
if (resilient_startup == null_getenv) {
|
|
return result;
|
|
}
|
|
return result == TPM_E_INVALID_POSTINIT ? TPM_SUCCESS : result;
|
|
}
|