summaryrefslogtreecommitdiffstats
path: root/memtestEDK/Memtest/SingleComponents/TestTest.c
blob: 8840f54f78b651e3689fbcdc35e9364235e5b5fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/UefiApplicationEntryPoint.h>

#include "test.h"


EFI_STATUS
EFIAPI
UefiMain (
  IN EFI_HANDLE        ImageHandle,
  IN EFI_SYSTEM_TABLE  *SystemTable
  )
{
  Print(L"Test for test\n\n");


  Print(L"Test finished.\n");

  return EFI_SUCCESS;
}