Commit 195eb903 authored by Fangrui Song's avatar Fangrui Song
Browse files

[UpdateTestChecks] Change shebang from python to python3

'python' means Python 2 on some platforms while Python 3 on others.
'python3' is Python 3 only. Python 2.7 End of Life is set to January 1,
2020. Getting rid of Python 2 support reduces maintenance burden.

Reviewed By: lebedev.ri

Differential Revision: https://reviews.llvm.org/D70730
parent 1374f7bd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""A script to generate FileCheck statements for 'opt' analysis tests.

+2 −2
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""A test case update script.

+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""A test case update script.

+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""Updates FileCheck checks in MIR tests.

+1 −1
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3

"""A script to generate FileCheck statements for 'opt' regression tests.