Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-25251

Add resmoke suite syntax check to compile task

    • Server Tooling & Methods

      If we have a syntax error in a yml file, we need to avoid failing suites because of that. We can short term handle this with:

      for suite in $(ls buildscripts/resmokeconfig/suites/*.yml | egrep -v "mongos_test|no_server|with_server"); do 
          python buildscripts/resmoke.py --dryRun tests --suite $(basename $suite | sed s/.yml//);
          if [ $? -ne 0 ]; 
              then echo $suite has syntax issues; 
              break; 
          fi; 
      done
      

            Assignee:
            backlog-server-stm Backlog - Server Tooling and Methods (STM) (Inactive)
            Reporter:
            michael.grundy Michael Grundy
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: