Coverage Report

Created: 2025-07-12 06:49

/src/tpm2/TestParms.c
Line
Count
Source (jump to first uncovered line)
1
// This file was extracted from the TCG Published
2
// Trusted Platform Module Library
3
// Part 3: Commands
4
// Family "2.0"
5
// Level 00 Revision 01.16
6
// October 30, 2014
7
8
#include "InternalRoutines.h"
9
#include "TestParms_fp.h"
10
TPM_RC
11
TPM2_TestParms(
12
   TestParms_In   *in             // IN: input parameter list
13
   )
14
0
{
15
   // Input parameter is not reference in command action
16
0
   in = NULL;
17
18
   // The parameters are tested at unmarshal process.   We do nothing in command
19
   // action
20
0
   return TPM_RC_SUCCESS;
21
0
}