Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dfdfbe9eb6ec469017dc51f5c6c19ae4fe916ae9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.cdt.core.internal.build;

import java.io.IOException;

import org.eclipse.cdt.core.build.gcc.GCCToolChainFactory;
import org.junit.Test;

public class GCCTests {

	@Test
	public void tryGCCDiscovery() throws IOException {
		long start = System.currentTimeMillis();
		new GCCToolChainFactory().discover();
		System.out.println("Time: " + (System.currentTimeMillis() - start));
	}

}

Back to the top