| 
					
				 | 
			
			
				@@ -194,13 +194,17 @@ class CLanguage(object): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 class NodeLanguage(object): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  def __init__(self): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    self.node_version = '0.12' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   def test_specs(self, config, args): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    return [config.job_spec(['tools/run_tests/run_node.sh'], None, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return [config.job_spec(['tools/run_tests/run_node.sh', self.node_version], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                            None, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             environ=_FORCE_ENVIRON_FOR_WRAPPERS)] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   def pre_build_steps(self): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     # Default to 1 week cache expiration 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    return [['tools/run_tests/pre_build_node.sh']] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return [['tools/run_tests/pre_build_node.sh', self.node_version]] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   def make_targets(self, test_regex): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return [] 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -209,7 +213,7 @@ class NodeLanguage(object): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return [] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   def build_steps(self): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    return [['tools/run_tests/build_node.sh']] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return [['tools/run_tests/build_node.sh', self.node_version]] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   def post_tests_steps(self): 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return [] 
			 |