Remove __DATE__ and __TIME__ usage (#1506)

These macros make the build non-deterministic.
This commit is contained in:
Krzysztof Kosiński
2022-09-23 09:29:18 -07:00
committed by GitHub
parent 92285f7c9d
commit 180adef84c
6 changed files with 5 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
//
// Copyright (c) 2017 The Khronos Group Inc.
//
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
@@ -221,7 +221,6 @@ static int ParseArgs( int argc, const char **argv )
gWimpyMode = 1;
}
vlog( "Test binary built %s %s\n", __DATE__, __TIME__ );
PrintArch();
if( gWimpyMode )
{
@@ -247,4 +246,3 @@ static void PrintUsage( void )
vlog("\t\t%s\n", test_list[i].name );
}
}