mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-29 18:53:58 +01:00 
			
		
		
		
	Verify that every test file which references a harness file using the "includes" directive also contains at least one reference to a value defined in the harness file. To support this check, extend each harness file with a list of values which it defines.
		
			
				
	
	
		
			30 lines
		
	
	
		
			720 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			720 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2009 the Sputnik authors.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| /*---
 | |
| description: |
 | |
|     Collection of date-centric values
 | |
| defines:
 | |
|   - date_1899_end
 | |
|   - date_1900_start
 | |
|   - date_1969_end
 | |
|   - date_1970_start
 | |
|   - date_1999_end
 | |
|   - date_2000_start
 | |
|   - date_2099_end
 | |
|   - date_2100_start
 | |
|   - start_of_time
 | |
|   - end_of_time
 | |
| ---*/
 | |
| 
 | |
| var date_1899_end = -2208988800001;
 | |
| var date_1900_start = -2208988800000;
 | |
| var date_1969_end = -1;
 | |
| var date_1970_start = 0;
 | |
| var date_1999_end = 946684799999;
 | |
| var date_2000_start = 946684800000;
 | |
| var date_2099_end = 4102444799999;
 | |
| var date_2100_start = 4102444800000;
 | |
| 
 | |
| var start_of_time = -8.64e15;
 | |
| var end_of_time = 8.64e15;
 |