1#!/usr/bin/env python 2 3# Copyright (c) 2015 Google Inc. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7""" 8Test that empty variable names don't cause infinite loops. 9""" 10 11import os 12 13import TestGyp 14 15test = TestGyp.TestGyp() 16 17test.run_gyp('empty.gyp') 18 19test.pass_test() 20